Skip to main content
GET
/
v1
/
accounts
/
contacts
Get all account contacts
curl --request GET \
  --url https://platform.thena.ai/v1/accounts/contacts \
  --header 'Authorization: Bearer <token>'
[
  {
    "userId": "<string>",
    "user": "<string>",
    "userEmail": "<string>",
    "contactTypeId": "<string>",
    "contactType": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Enter the bearer token

Query Parameters

accountId
string
required

Account ID to find the account contacts

Example:

"A123"

contactType
string

Contact type to find the account contacts (returns all contacts if not provided)

Example:

"CT123"

page
number

The page number

limit
number

The limit number of contacts to fetch

Response

Operation successful

userId
string
required

The identifier of the user

user
string
required

The name of the user

userEmail
string
required

The email of the user

contactTypeId
string
required

The identifier of the contact type

contactType
string
required

The name of the contact type

createdAt
string
required

The creation date of the contact

updatedAt
string
required

The last update date of the contact

I