Learn
Get started with MobilizeHub
Create a contact
cURL
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": "jsmith@example.com", "subscribed": true, "firstName": "<string>", "lastName": "<string>", "bio": "<string>", "phone": "<string>", "mobile": "<string>", "address": "<string>", "zip": "<string>", "city": "<string>", "country": "<string>" }'
{ "data": { "contactId": "<string>" }, "object": "contact" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Contact object
The body is of type object.
object
The response is of type object.