curl --request POST \
--url https://dev.superpool.unyte.africa/api/v1/quotes/{quote_code}/intent/capture/ \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"tenure": 123,
"customer_metadata": {
"first_name": "<string>",
"last_name": "<string>",
"email": "[email protected]",
"residential_address": {
"city": "<string>",
"state": "<string>",
"country": "<string>",
"street": "<string>",
"postal_code": "<string>",
"address": "<string>",
"house_number": "<string>"
},
"occupation": "<string>",
"identity_card_img": "<string>",
"utility_bill_img": "<string>",
"identity_card_number": "<string>",
"identity_card_type": "driver_license",
"phone": "<string>",
"date_of_birth": "2023-12-25",
"customer_gender": "M",
"identity_card_expiry_date": "2023-12-25"
}
}
'