curl --request POST \
--url https://sandbox-api.prava.space/v1/customers \
--header 'Api-Key: <api-key>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"type": "<string>",
"signed_agreement_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"phone": "<string>",
"birth_date": "<string>",
"address": {
"street_line_1": "<string>",
"city": "<string>",
"subdivision": "<string>",
"postal_code": "<string>",
"country": "<string>"
}
}
'