Skip to main content
POST
/
api
/
v1
/
customers
/
{customerId}
/
otp
/
Validate OTP for KYC Reuse
curl --request POST \
  --url https://skala-sandbox.ripio.com/api/v1/customers/{customerId}/otp/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "code": "123456"
}'
This response does not have an example.

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.

Body

application/json

Payload for validating OTP.

code
string
required

The OTP code to verify.

Example:

"123456"

Response

OTP valid and KYC created successfully. Empty body.