GET
/
v1
/
banks
/
{providerId}
Retrieve Bank
curl --request GET \
  --url https://api.monime.io/v1/banks/{providerId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "messages": [
    "<any>"
  ],
  "result": {
    "providerId": "slb004",
    "name": "Guarantee Trust Bank",
    "country": "SL",
    "status": {
      "active": true
    },
    "featureSet": {
      "payout": {
        "canPayTo": true,
        "schemes": [
          "<string>"
        ],
        "metadata": {}
      },
      "payment": {
        "canPayFrom": true,
        "schemes": [
          "<string>"
        ],
        "metadata": {}
      },
      "kycVerification": {
        "canVerifyAccount": true,
        "metadata": {}
      }
    },
    "createTime": "2023-11-07T05:31:56Z",
    "updateTime": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

providerId
string
required

Unique provider ID for the bank as assigned by Monime.

Response

200 - application/json

OK

The response is of type object.