curl --request POST \
--url https://{baasHost}/api/v1/kyc/customers/{customerId}/kyc \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"documents": [
{
"type": "NATIONAL_ID",
"url": "https://storage.example.com/id-front.jpg"
}
],
"identifiers": [
{
"type": "nid",
"value": "TZ-NIN-19900115-001"
}
]
}
'