POST
/
api
/
v1
/
customers
/
{customerId}
/
checkKyc
/
Check KYC Status & Send OTP
curl --request POST \
  --url https://skala-sandbox.ripio.com/api/v1/customers/{customerId}/checkKyc/ \
  --header 'Authorization: Bearer <token>'
{
"detail": "kyc approved. Otp sent"
}

Authorizations

Authorization
string
header
required

Access token obtained via /oauth2/token/. Use as Authorization: Bearer <access_token>.

Path Parameters

customerId
string<uuid>
required

Unique identifier for the customer.

Response

KYC approved in Ripio and OTP sent.

detail
string
required
Example:

"kyc approved. Otp sent"