curl --request POST \
--url https://api.example.com/Customers \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"number": "<string>",
"addressLine1": "<string>",
"addressLine2": "<string>",
"city": "<string>",
"country": "<string>",
"postalCode": "<string>"
}
'