GET
/
v1
/
accounts
/
contacts
/
search
curl --request GET \
  --url https://platform.thena.ai/v1/accounts/contacts/search \
  --header 'x-api-key: <api-key>'
[
  {
    "id": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "email": "<string>",
    "phoneNumber": "<string>",
    "avatarUrl": "<string>",
    "accounts": [
      "<string>"
    ],
    "contactTypeId": "<string>",
    "contactType": "<string>",
    "customFieldValues": [
      "<string>"
    ],
    "metadata": {},
    "createdAt": "<string>",
    "updatedAt": "<string>"
  }
]

Authorizations

x-api-key
string
header
required

Enter your API key

Query Parameters

email
string
required

The email of the customer contact to search

Example:

"john.doe@example.com"

Response

200
application/json

Operation successful

The response is of type object[].