curl --request POST \
--url https://api.mobilizehub.com/v1/contact.create-contact \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"organizationId": "<string>",
"email": "[email protected]",
"subscribed": true,
"firstName": "<string>",
"lastName": "<string>",
"bio": "<string>",
"phone": "<string>",
"mobile": "<string>",
"address": "<string>",
"zip": "<string>",
"city": "<string>",
"country": "<string>"
}
'