Reorder Fact Find Questions Run in API Explorer
Ask AI
POST
/api/v2/fact-find/questions/reorder
curl \
--request POST 'https://api.plannrcrm.com/api/v2/fact-find/questions/reorder' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"order":["193ad192-854a-453f-a68e-9e569c5dbba7","25eac88a-0614-4b49-a9ef-8381f39f187e","2222b572-01a5-472e-8eb8-2a4ee415cc10"]}'
Request examples
{
"order": [
"193ad192-854a-453f-a68e-9e569c5dbba7",
"25eac88a-0614-4b49-a9ef-8381f39f187e",
"2222b572-01a5-472e-8eb8-2a4ee415cc10"
]
}
Response examples (200)
{
"data": [
"uuid-1",
"uuid-2",
"uuid-3"
]
}
Response examples (422)
{
"message": "The given data was invalid.",
"errors": {
"field": [
"The field is invalid."
]
}
}