Query Monitored Bank Identification Numbers
Returns a paginated list of all monitored BINs for your account.
The Enzoic API uses a basic auth scheme where the username is your API key and the password is your API secret.
See https://docs.enzoic.com/enzoic-api-developer-documentation/using-the-enzoic-api#api-authentication for more details.
(Optional) If this parameter is specified and true, the results will include the webhook information for each BIN.
(Optional) The number of results to return in a single call. The maximum is 100.
100(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.
The response body contains the requested results.
GET /v1/bin-monitoring HTTP/1.1
Host: api.enzoic.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
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?