Get a response
This endpoint retrieves a specific response.
Request
GET https://api.nicereply.com/responses/<ID>
Path Parameters
| Parameter | Data Type | Description | 
|---|---|---|
| ID | UUID | ID of the response. | 
Example response
200 OK
{
  "data": {
    "id": "018a88f2-c3bf-777b-ac48-f53263563fe0",
    "feedback_object_id": "82f3a55d-aa55-4973-84de-b3797a9a7550",
    "survey_id": "9df60603-9453-41a2-a938-436fd603820d",
    "customer_id": null,
    "from": null,
    "ticket_id": null,
    "location": "",
    "ip_address": "10.98.218.143",
    "is_instant": false,
    "status": "CLOSED",
    "created_at": "2023-09-12T12:32:05+02:00",
    "updated_at": "2023-09-26T10:16:40+02:00",
    "answers": [
      {
        "id": "fc0a1886-4d6b-483e-9326-8dc2efe71480",
        "question_id": "7a9ecf44-dfe1-4f7f-8f99-c612cd815033",
        "question_type": "SCALE",
        "scale": {
          "value": 1
        },
        "open_ended": null,
        "created_at": "2023-09-12T12:32:05+02:00",
        "updated_at": "2023-09-20T15:43:05+02:00"
      },
      {
        "id": "8821e771-1a2a-48b6-8239-a1f31ebc80ba",
        "question_id": "f0f8b0f6-28e2-402c-9286-24db50120113",
        "question_type": "OPEN_ENDED",
        "scale": null,
        "open_ended": {
          "value": "It's a great product!"
        },
        "created_at": "2023-09-12T12:32:05+02:00",
        "updated_at": "2023-09-12T12:32:05+02:00"
      }
    ],
    "tags": [
      {
        "id": "022b8b1d-5479-4332-a6c3-610295f9bccf",
        "name": "Customer Support",
        "created_at": "2023-09-26T10:16:06+02:00",
        "updated_at": "2023-09-26T10:16:06+02:00"
      }
    ]
  }
}