Reorder Life Stages for a firm

POST /api/v1/life-stage/reorder

Headers

application/json

Body Required

  • order array[string] Required

    An ordered array of Expenditure Life Stage UUID’s.

Responses

POST /api/v1/life-stage/reorder
curl \
 -X POST https://api.plannrcrm.com/api/v1/life-stage/reorder \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json" \
 -d '{"order":["fee98c73-c29d-4d60-8b85-bef1191457f4","eb28730d-f6a3-43d1-a4ac-71ba2e6b34d1","9f0a5d50-7fbd-4b3e-8cc6-0726f7463086"]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json

# Payload
{
  "order": [
    "fee98c73-c29d-4d60-8b85-bef1191457f4",
    "eb28730d-f6a3-43d1-a4ac-71ba2e6b34d1",
    "9f0a5d50-7fbd-4b3e-8cc6-0726f7463086"
  ]
}