curl --location 'https://prod.your-api-server.com/contacts' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"firstName": "string",
"lastName": "string",
"email": "user@example.com",
"emails": [
"user@example.com"
],
"phone": "string",
"phones": [
"string"
],
"jobTitle": "string",
"company": "string",
"website": "string",
"notes": "string"
}'