Chilkat Online Tools

Delphi (DLL) / Broker API / Trading Account

Back to Collection Items

var

begin
CkHttp_putBasicAuth(http,True);CkHttp_putLogin(http,'{{api_key}}');CkHttp_putPassword(http,'{{api_secret}}');success := CkHttp_QuickGetSb(http,'https://domain.com/v1/trading/accounts/:account_id/account',sbResponseBody);


Curl Command

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

Postman Collection Item JSON

{
  "name": "Trading Account",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{HOST}}/v1/trading/accounts/:account_id/account",
      "host": [
        "{{HOST}}"
      ],
      "path": [
        "v1",
        "trading",
        "accounts",
        ":account_id",
        "account"
      ],
      "query": [
        {
          "key": "",
          "value": null,
          "disabled": true
        }
      ],
      "variable": [
        {
          "key": "account_id",
          "value": ""
        }
      ]
    }
  },
  "response": [
  ]
}