GET
/
v1
/
contact.get-contact
curl --request GET \
  --url https://api.mobilizehub.com/v1/contact.get-contact \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "createdAt": "<string>",
    "updatedAt": "<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>",
    "organizationId": "<string>"
  },
  "object": "contact"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

contactId
string
required
organizationId
string
required

Response

200
application/json

Retrieve a contact

The response is of type object.