Skip to main content

Update an answer

This endpoint allows you to update an answer.

Request

POST https://api.nicereply.com/answers/<ID>

Path Parameters

ParameterData TypeDescription
IDUUIDID of the answer.

Request body

Field NameData TypeIs NullableDescription
scaleScale ObjectYesMay be null if type of a question is not a SCALE
open_endedOpen Ended ObjectYesMay be null if type of a question is not a OPEN_ENDED

Scale object

Field NameData TypeIs NullableDescription
valueIntegerNoScore

Open ended object

Field NameData TypeIs Nullable
valueStringNo
Example body
{
"scale": {
"value": 1
},
"open_ended": null
}

Example response

204 No Content