Show Developer Menu

GET /contacts/{email}/identities

Issuing a GET call to identities will allow you to retrieve identities for the contact.

Example Request
curl 'https://{brand}.reamaze.io/api/v1/contacts/{email}/identities' \
  -u {login-email}:{api-token} \
  -H 'Accept: application/json'
Example Response
{
  "identities": [
    {
      "type": "email",
      "identifier": "johndoe@example.com"
    },
    ...
  ]
}
Notes
  • The type value can be the following: 'email', 'twitter','facebook', 'instagram', 'igsid' (Instagram-scoped ID), or 'mobile'.