List of feedback objects
This endpoint retrieves all your feedback objects.
Request
GET https://api.nicereply.com/feedback-objects
By default, list of feedback objects is sorted by created_at.
Query Parameters
Pagination is supported.
| Parameter | Required | Default | Description | 
|---|---|---|---|
| sort_order | No | desc | Valid values is: ascordesc. | 
Example response
200 OK
{
  "data": [
    {
      "id": "053c46d9-3fcb-4c25-815a-97d37e3cc80f",
      "type": "AGENT",
      "username": "katherine-sutton",
      "integration_usernames": [],
      "full_name": "Katherine Sutton",
      "email": "katherine+sutton@example.tld",
      "is_archived": false,
      "feedback_object_groups": [
        {
          "id": "751b6ccd-4c84-43ab-b352-478ebc059c40",
          "name": "Developers",
          "feedback_object_ids": [
            "82f3a55d-aa55-4973-84de-b3797a9a7550",
            "053c46d9-3fcb-4c25-815a-97d37e3cc80f"
          ],
          "created_at": "2022-01-21T10:47:57+01:00",
          "updated_at": "2022-01-21T10:47:57+01:00"
        }
      ],
      "created_at": "2023-09-06T13:39:45+02:00",
      "updated_at": "2023-09-06T13:39:45+02:00"
    },
    {
      "id": "c705eac9-7f76-4785-a0c5-8713cfc672ce",
      "type": "AGENT",
      "username": "brandon-adams",
      "integration_usernames": [
        {
          "id": "c8cb40bc-5bca-4e69-bef8-d056fd8cef66",
          "integration_id": "0f349089-b8e1-4456-b978-31cee928144e",
          "username": "la-brandon-adams",
          "type": "liveagent-v2"
        }
      ],
      "full_name": "Brandon Adams",
      "email": "brandon+adams@example.tld",
      "is_archived": false,
      "feedback_object_groups": [],
      "created_at": "2023-08-15T10:07:16+02:00",
      "updated_at": "2023-08-15T10:07:16+02:00"
    },
    {
      "id": "627fafe4-3562-4b88-bc10-d99f8aa411f9",
      "type": "THING_OR_ACTION",
      "username": "brandon-adams",
      "integration_usernames": [],
      "full_name": "Brandon Adams",
      "email": null,
      "is_archived": false,
      "feedback_object_groups": [],
      "created_at": "2023-07-11T12:03:12+02:00",
      "updated_at": "2023-07-11T12:03:12+02:00"
    }
    // ...
  ],
  "pagination": {
    "total": 30,
    "count": 10,
    "per_page": 10,
    "current_page": 1,
    "total_pages": 3,
    "links": {
      "next": "/feedback-objects?page=2",
      "prev": null
    }
  }
}