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

Name
Type
Description

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

Name
Type
Description

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": "[email protected]",
          "clientId": "",
          "parentId": 0,
          "metaDetails": {
            "isBotClient": false,
            "label": ""
          },
          "type": "user",
          "accessLevel": null
        }
      }
    ]
  }
}

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

Query Parameters

Name
Type
Description

select

array

selected

Last updated