List All Tags

List all tags

List all tags

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

Retrieve a list of all tags.

Query Parameters

NameTypeDescription

search

string

search for key words

order

object

Object type expects field name by which you want to order followed by values eg: {"id":"DESC"}

relations

string

"contact" | "case"

select

array

Specify the selected fields

Headers

NameTypeDescription

Authorization

string

Bearer {{api_key}}

{
  "data": {
    "count": 1,
    "data": [
      {
        "id": 1,
        "name": "testings",
        "color": "#3F95FD",
        "userId": 12,
        "type": [
          "contact"
        ],
        "dateCreated": "2021-03-17T06:25:56.000Z",
        "user": {
          "departments": [],
          "roles": [],
          "id": 12,
          "name": "vivek",
          "firstName": "vivek",
          "lastName": "",
          "photo": "",
          "email": "vivek@acquire.io",
          "clientId": "",
          "parentId": 0,
          "metaDetails": {
            "isBotClient": false,
            "label": ""
          },
          "type": "user",
          "accessLevel": null
        }
      }
    ]
  }
}

GET https://{{account_id}}.acquire.io/api/v1/crm/feedback/{{feedbackId}}

Query Parameters

NameTypeDescription

select

array

selected

Last updated