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>"
}
]
}
'