GET
/
kyc-verifications
/
{providerCode}
curl --request GET \
  --url https://api.monime.io/kyc-verifications/{providerCode} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "messages": [
    "<any>"
  ],
  "result": {
    "provider": {
      "code": "m17",
      "type": "momo",
      "name": "Orange Money"
    },
    "accountId": "<string>",
    "accountHolderProfile": {
      "firstName": "<string>",
      "lastName": "<string>"
    },
    "metadata": {}
  }
}

Authorizations

Authorization
string
header
required

Bearer HTTP authentication specified with the header Authorization: Bearer <access_token>

Path Parameters

providerCode
string
required

The code for the provider as identified by Monime.

Query Parameters

accountId
string
required

The ID of the account in the provider to be verified.

accountType
enum<string>

The type of the account to be verified. Some providers like m17(Orange Money SL) can issue the same account ID(MSISDN) to different account types.

Available options:
merchant

Response

200 - application/json
OK
success
boolean

Represents the status of the query operation, confirming if it was successful. This field is always true

messages
any[]

Contains a list of messages providing relevant information or feedback related to the query or operation

result
object