GET
/
v1
/
provider-kyc
/
{providerId}
Retrieve Provider KYC
curl --request GET \
  --url https://api.monime.io/v1/provider-kyc/{providerId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "messages": [
    "<any>"
  ],
  "result": {
    "account": {
      "id": "<string>",
      "name": "<string>",
      "holderName": "<string>",
      "metadata": {}
    },
    "provider": {
      "id": "m17",
      "type": "momo",
      "name": "Orange Money"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

providerId
string
required

The ID of the provider as identified by Monime.

Query Parameters

accountId
string
required

The ID of the account in the provider's ecosystem'.

Response

200 - application/json

OK

The response is of type object.