Skip to main content
GET
/
api
/
v3
/
kyc
/
status
/
{kycId}
Get Kyc Status
curl --request GET \
  --url https://sandbox-api.kotanipay.com/api/v3/kyc/status/{kycId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Successfully retrieved kyc status",
  "data": {
    "status": "<string>",
    "kycId": "<string>",
    "kycStatus": true
  }
}
This API will get KYC status for a specific KYC record.

Authorizations

Authorization
string
header
required

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

Path Parameters

kycId
string
required

Response

200 - application/json
success
boolean
Example:

true

message
string
Example:

"Successfully retrieved kyc status"

data
object