Get Single Tag

Retrieve a single tag.

Get single tag

GET https://{{account_id}}.acquire.io/api/v1/crm/tag/{{tagId}}

Retrieve a single tag. The TAG_ID must be passed in to the endpoint as a path parameter.

Path Parameters

NameTypeDescription

tagId

integer

The tag's ID

Query Parameters

NameTypeDescription

relations

string

"contact" | "case"

select

array

Specify fields which you want to get in the list

Headers

NameTypeDescription

Authorization

string

Bearer {{api_key}}

{
  "data": {
    "id": 1,
    "name": "testings",
    "color": "#3F95FD",
    "userId": 12,
    "type": [
      "contact"
    ],
    "dateCreated": "2021-03-17T06:25:56.000Z"
  }
}

Last updated