Chilkat Online Tools

Perl / Broker API / Bank Details for Account

Back to Collection Items

use chilkat();

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

$http = chilkat::CkHttp->new();

$http->put_BasicAuth(1);
$http->put_Login("{{api_key}}");
$http->put_Password("{{api_secret}}");

$queryParams = chilkat::CkJsonObject->new();
$queryParams->UpdateString("status","ACTIVE");

# resp is a HttpResponse
$resp = $http->QuickRequestParams("GET","https://domain.com/v1/accounts/:account_id/recipient_banks",$queryParams);
if ($http->get_LastMethodSuccess() == 0) {
    print $http->lastErrorText() . "\r\n";
    exit;
}

print $resp->get_StatusCode() . "\r\n";
print $resp->bodyStr() . "\r\n";

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": [
  ]
}