Update an answer
This endpoint allows you to update an answer.
Request
POST https://api.nicereply.com/answers/<ID>
Path Parameters
| Parameter | Data Type | Description |
|---|---|---|
ID | UUID | ID of the answer. |
Request body
| Field Name | Data Type | Is Nullable | Description |
|---|---|---|---|
scale | Scale Object | Yes | May be null if type of a question is not a SCALE |
open_ended | Open Ended Object | Yes | May be null if type of a question is not a OPEN_ENDED |
Scale object
| Field Name | Data Type | Is Nullable | Description |
|---|---|---|---|
value | Integer | No | Score |
Open ended object
| Field Name | Data Type | Is Nullable |
|---|---|---|
value | String | No |
Example body
{
"scale": {
"value": 1
},
"open_ended": null
}
Example response
204 No Content