Query Monitored Bank Identification Numbers

Retrieve list of currently monitored Bank Identification Numbers (BINs)

get

Returns a paginated list of all monitored BINs for your account.

Authorizations
Query parameters
includeWebhookInfobooleanOptional

(Optional) If this parameter is specified and true, the results will include the webhook information for each BIN.

pageSizeintegerOptional

(Optional) The number of results to return in a single call. The maximum is 100.

Default: 100
pagingTokenstringOptional

(Optional) For each call to the API, if there are more pages of results available then a pagingToken will be returned. Pass the pagingToken in via this parameter to retrieve the subsequent page of results. Should be left off for the initial call to the API.

Responses
200
The response body contains the requested results.
application/json
get
GET /v1/bin-monitoring HTTP/1.1
Host: api.enzoic.com
Authorization: Bearer Base64(your_api_key:your_api_secret)
Accept: */*
200

The response body contains the requested results.

{
  "count": 1,
  "monitoredBins": [
    {
      "bin": "424242",
      "webhookID": "5a3ae05132ffb96e664d4626",
      "webhookURL": "https://mywebhook.com"
    }
  ],
  "pagingToken": "5854757a7750ac6c4230f656"
}

Last updated

Was this helpful?