Skip to main content
PUT
/
v1
/
customers
/
{id}
/
kyc
Update KYC status
curl --request PUT \
  --url https://api.example.com/v1/customers/{id}/kyc \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "pending",
  "verification_level": "basic",
  "verified_at": "2023-11-07T05:31:56Z",
  "documents": [
    {
      "type": "<string>",
      "number": "<string>",
      "expiry_date": "2023-12-25",
      "country": "<string>"
    }
  ]
}
'

Path Parameters

id
string<uuid>
required

Body

application/json
status
enum<string>
required
Available options:
pending,
verified,
rejected
verification_level
enum<string>
required
Available options:
basic,
advanced,
full
verified_at
string<date-time>
documents
object[]

Response

200

KYC status updated successfully