Reorder Fact Find Sections Run in API Explorer
Ask AI
POST
/api/v2/fact-find/sections/reorder
curl \
--request POST 'https://api.plannrcrm.com/api/v2/fact-find/sections/reorder' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"order": [
"a6960c3d-19d6-4279-bae4-e69d6559b4c8",
"be241a68-fe79-4d8e-9708-781fa6306e68",
"be185267-2590-4b40-a700-42ce337f98dd"
]
}'
Request examples
{
"order": [
"a6960c3d-19d6-4279-bae4-e69d6559b4c8",
"be241a68-fe79-4d8e-9708-781fa6306e68",
"be185267-2590-4b40-a700-42ce337f98dd"
]
}
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."
]
}
}