Delphi (ActiveX) / Broker API / Trading Account
Back to Collection Items
var
begin
http.BasicAuth := 1;http.Login := '{{api_key}}';http.Password := '{{api_secret}}';success := http.QuickGetSb('https://domain.com/v1/trading/accounts/:account_id/account',sbResponseBody.ControlInterface);
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": [
]
}