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": [
"cd8f85e5-c71b-4711-9066-b6308e8ef3ee",
"605ce82f-5bc8-46ab-94d3-d3a2edc11e23",
"fe89bb21-1a09-4229-a291-2dd97d04b2d6"
]
}'
Request examples
{
"order": [
"cd8f85e5-c71b-4711-9066-b6308e8ef3ee",
"605ce82f-5bc8-46ab-94d3-d3a2edc11e23",
"fe89bb21-1a09-4229-a291-2dd97d04b2d6"
]
}
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."
]
}
}