GET
/
v1
/
accounts
/
attributes
Gets all account attribute values
curl --request GET \
  --url https://platform.thena.ai/v1/accounts/attributes \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "attribute": "account_status",
  "value": "PROSPECT",
  "isDefault": true,
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Authorizations

Authorization
string
header
required

Enter the bearer token

Query Parameters

attribute
enum<string>
required

Attribute type

Available options:
account_status,
account_classification,
contact_type,
activity_type,
activity_status,
note_type,
task_type,
task_status,
task_priority
Example:

"account_status"

Response

200
application/json

Operation successful

The response is of type object.