Chilkat Online Tools

Unicode C++ / Broker API / Brokerage Account

Back to Collection Items

void ChilkatSample(void)
    {
    http.put_BasicAuth(true);    http.put_Login(L"{{api_key}}");    http.put_Password(L"{{api_secret}}");    success = http.QuickGetSb(L"https://domain.com/v1/accounts/:account_id",sbResponseBody);
    }

Curl Command

curl -X GET
	-u '{{api_key}}:{{api_secret}}'
https://domain.com/v1/accounts/:account_id

Postman Collection Item JSON

{
  "name": "Brokerage Account",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{HOST}}/v1/accounts/:account_id",
      "host": [
        "{{HOST}}"
      ],
      "path": [
        "v1",
        "accounts",
        ":account_id"
      ],
      "variable": [
        {
          "key": "account_id",
          "value": null
        }
      ]
    }
  },
  "response": [
  ]
}