GET
/
tags
/
account
/
{accountId}
List all tags for a specific account
curl --request GET \
  --url https://api.profilebehavior.com/v3/tags/account/{accountId} \
  --header 'Authorization: <api-key>'
{
  "code": 200,
  "data": [
    {
      "id": "60e9ca73c500a9001534ad84",
      "createdAt": "2025-01-01T14:42:52.329Z",
      "updatedAt": "2025-01-01T14:42:52.329Z",
      "label": "Team",
      "color": "emerald",
      "account": "507f1f77bcf86cd799439011",
      "profiles": [
        "6592008029c8c3e4dc76256c",
        "507f191e810c19729de860ea"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Custom HMAC authentication header.

Format: public:signature:nonce:timestamp

Path Parameters

accountId
string<string>
required

ID of the Account to retrieve Tags from

Response

Success

Standard response object for successful requests that return an array of resources. Used for list endpoints in the Profile Behavior API.