List of all feedback

Retrieve all feedback questions

All Feedbacks

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

Retrieve a list of all feedback questions.

Query Parameters

NameTypeDescription

order

object

Object type where you can mention field name followed by value. eg: {"id":"DESC"}

where

object

Object type where you can specify field name followed by a value. eg: {"search":"How"}

select

array

An array of strings which includes the fields in return Eg: "id","type" etc.

Headers

NameTypeDescription

Authorization

string

Bearer {{api_key}}

{
  "data": {
    "count": 1,
    "departmentList": {
      "list": [
        {
          "id": 6,
          "name": "eswweew "
        },
        {
          "id": 7,
          "name": "fdhfthnfgg"
        },
        {
          "id": 8,
          "name": "Youpps"
        },
        {
          "id": 9,
          "name": "robust"
        },
        {
          "id": 10,
          "name": "qwe"
        },
        {
          "id": 11,
          "name": "moi"
        },
        {
          "id": 12,
          "name": "roi"
        },
        {
          "id": 13,
          "name": "eoi"
        }
      ],
      "success": "true"
    },
    "data": [
      {
        "id": 36,
        "question": "How satisfied?",
        "type": "rating",
        "config": {
          "values": [
            {
              "icon": "settings/feedback-5.svg",
              "label": "DISLIKE",
              "value": "5"
            }
          ],
          "required": true,
          "rating_type": "star",
          "error_message": "Invalid Input"
        },
        "departments": [],
        "channels": [
          "email"
        ],
        "dateCreated": "2021-03-17T04:27:48.000Z",
        "status": "active"
      }
    ]
  }
}

Last updated