curl --request POST \
--url https://sandbox-api.prava.space/v1/customers/{customer_id}/address \
--header 'Api-Key: <api-key>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"name": "<string>",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>",
"contact_information": {
"phone": "<string>",
"email": "<string>"
}
}
'