# Get single feedback

## Get Single Feedback

<mark style="color:blue;">`GET`</mark> `https://{{account_id}}.acquire.io/api/v1/crm/feedback/{{feedbackId}}`

Retrieve a single feedback question. The **feedbackId** must be passed in to the endpoint as a path parameter.

#### Path Parameters

| Name       | Type    | Description            |
| ---------- | ------- | ---------------------- |
| feedbackId | integer | The ID of the feedback |

#### Query Parameters

| Name      | Type   | Description                                 |
| --------- | ------ | ------------------------------------------- |
| relations | object | Specify the relation to "case" or "contact" |
| select    | array  | Specify the selected fields                 |

#### Headers

| Name          | Type   | Description         |
| ------------- | ------ | ------------------- |
| Authorization | string | Bearer {{api\_key}} |

{% tabs %}
{% tab title="200 " %}

```
{
  "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"
  }
}
```

{% endtab %}
{% endtabs %}
