Reorder Life Stage Section Fields for a firm

POST /api/v1/expenditure-structure/field/reorder

Headers

application/json

Body Required

  • order array[string] Required

    An ordered array of Expenditure Life Stage Section Fields UUID’s.

Responses

POST /api/v1/expenditure-structure/field/reorder
curl \
 -X POST https://api.plannrcrm.com/api/v1/expenditure-structure/field/reorder \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json" \
 -d '{"order":["e4c0a2bc-ffff-4d2f-9f68-977b158f362f","c2df4b1b-e0ef-4532-97bc-8490500c98a6","5c7514b4-ccd7-45c0-94a0-0e6f4a15c91b","ea5a06c7-be40-4a8d-bf2e-48d97dda5534","18d71e9f-9ff7-4749-b018-11cc85469e55"]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "order": [
    "e4c0a2bc-ffff-4d2f-9f68-977b158f362f",
    "c2df4b1b-e0ef-4532-97bc-8490500c98a6",
    "5c7514b4-ccd7-45c0-94a0-0e6f4a15c91b",
    "ea5a06c7-be40-4a8d-bf2e-48d97dda5534",
    "18d71e9f-9ff7-4749-b018-11cc85469e55"
  ]
}