delphiDll / Broker API / Bank Details for Account
Back to Collection Items
var
http: HCkHttp;
success: Boolean;
queryParams: HCkJsonObject;
resp: HCkHttpResponse;
begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http := CkHttp_Create();
CkHttp_putBasicAuth(http,True);
CkHttp_putLogin(http,'{{api_key}}');
CkHttp_putPassword(http,'{{api_secret}}');
queryParams := CkJsonObject_Create();
CkJsonObject_UpdateString(queryParams,'status','ACTIVE');
resp := CkHttp_QuickRequestParams(http,'GET','https://domain.com/v1/accounts/:account_id/recipient_banks',queryParams);
if (CkHttp_getLastMethodSuccess(http) = False) then
begin
Memo1.Lines.Add(CkHttp__lastErrorText(http));
Exit;
end;
Memo1.Lines.Add(IntToStr(CkHttpResponse_getStatusCode(resp)));
Memo1.Lines.Add(CkHttpResponse__bodyStr(resp));
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
CkJsonObject_Dispose(queryParams);
Curl Command
curl -G -d "status=ACTIVE"
-u '{{api_key}}:{{api_secret}}'
https://domain.com/v1/accounts/:account_id/recipient_banks
Postman Collection Item JSON
{
"name": "Bank Details for Account",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{HOST}}/v1/accounts/:account_id/recipient_banks?status=ACTIVE",
"host": [
"{{HOST}}"
],
"path": [
"v1",
"accounts",
":account_id",
"recipient_banks"
],
"query": [
{
"key": "status",
"value": "ACTIVE",
"description": "ACTIVE or INACTIVE"
},
{
"key": "bank_name",
"value": null,
"description": "Type: string",
"disabled": true
}
],
"variable": [
{
"key": "account_id",
"value": null
}
]
}
},
"response": [
]
}