curl --request POST \
--url https://api.platnova.com/v1/customers \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"first_name": "John",
"last_name": "Doe",
"email": "[email protected]",
"phone": "+23490123456789",
"country_code": "NG",
"date_of_birth": "1970-12-28",
"country": "Nigeria",
"document": {
"id_type": "NATIONAL_ID",
"id_number": "1096277890",
"front_doc": "",
"back_doc": ""
},
"address": {
"street": "12 Lekki Lane",
"city": "Lekki",
"state": "Lagos",
"postal_code": "200123",
"country": "Nigeria",
"document_url": "http://example.com"
}
}
'