Chilkat Online Tools

VBScript / Broker API / Bank Details for Account

Back to Collection Items

Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
Set outFile = fso.CreateTextFile("output.txt", True)

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

set http = CreateObject("Chilkat_9_5_0.Http")

http.BasicAuth = 1
http.Login = "{{api_key}}"
http.Password = "{{api_secret}}"

set queryParams = CreateObject("Chilkat_9_5_0.JsonObject")
success = queryParams.UpdateString("status","ACTIVE")

' resp is a Chilkat_9_5_0.HttpResponse
Set resp = http.QuickRequestParams("GET","https://domain.com/v1/accounts/:account_id/recipient_banks",queryParams)
If (http.LastMethodSuccess = 0) Then
    outFile.WriteLine(http.LastErrorText)
    WScript.Quit
End If

outFile.WriteLine(resp.StatusCode)
outFile.WriteLine(resp.BodyStr)


outFile.Close

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