Endpoints

List FNB Smart Blocked transactions

Lists FNB Smart Blocked transactions for the caller's merchants. When fromdate is set, returns the oldest 1000 from that date forward; when omitted, returns the most recent 1000.

POST
/v1/fnbsb

Authorization

bearerAuth
AuthorizationBearer <token>

A partner API token issued to a Master Account. Send Authorization: Bearer <token> on every request. Tokens are issued and revoked by a SuperAdmin in the backoffice, not through this API.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

{
  "items": [
    {
      "id": 0,
      "merchantid": 0,
      "dateflagged": "2019-08-24T14:15:22Z",
      "merchantreference": "string",
      "paymentreference": "string",
      "statementreference": "string",
      "frombankaccount": "string",
      "amount": 0,
      "transactiondts": "2019-08-24T14:15:22Z",
      "state": 0,
      "statelabel": "string",
      "lasterror": "string",
      "lastupdate": "2019-08-24T14:15:22Z"
    }
  ],
  "count": 0
}
{
  "error": {
    "code": "validation_failed",
    "message": "MINIMUM_EFT_AMOUNT must be numeric.",
    "requestid": "8f3c1a9b2d7e4f60"
  }
}
{
  "error": {
    "code": "unauthorized",
    "message": "A valid bearer token is required.",
    "requestid": "8f3c1a9b2d7e4f60"
  }
}
{
  "error": {
    "code": "rate_limited",
    "message": "Too many requests. Retry after the period indicated.",
    "requestid": "8f3c1a9b2d7e4f60"
  }
}

On this page