Get a survey
This endpoint retrieves a specific survey.
Request
GET https://api.nicereply.com/surveys/<ID>
Path Parameters
Parameter | Data Type | Description |
---|---|---|
ID | UUID | ID of the survey. |
Example response
200 OK
{
"data": {
"id": "4e25a8aa-c810-49ae-95c3-01e03ac07e37",
"name": "Help Desk survey",
"distribution": "TEMPLATE",
"integration_id": "2f83d275-374d-45ea-b2e8-674942026ba8",
"is_archived": false,
"created_at": "2023-09-26T10:46:55+02:00",
"updated_at": "2023-09-26T10:46:55+02:00",
"ticket_link": "https://nicereply.platform.tld/agent/#/tickets/<TICKET_ID>",
"questions": [
{
"question_id": "17762183-8c94-40e5-8e2f-e4a12eaeefb4",
"position": 1,
"is_required": true,
"is_active": true,
"is_main": true
}
]
}
}