Update a given section progress

POST /api/v1/fact-find/request/{factFindRequest_uuid}/section/{factFindSchemaSection_uuid}/progress

Requires a fact-find pass to be passed in.

Headers

Path parameters

application/json

Body Required

POST /api/v1/fact-find/request/{factFindRequest_uuid}/section/{factFindSchemaSection_uuid}/progress
curl \
 --request POST https://api.plannrcrm.com/api/v1/fact-find/request/factFindRequest_uuid/section/factFindSchemaSection_uuid/progress \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json" \
 --header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
 --data '{"fact_find_pass_uuid":"f8b80c81-accc-4885-9514-5bd54f436614","is_complete":true}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "fact_find_pass_uuid": "f8b80c81-accc-4885-9514-5bd54f436614",
  "is_complete": true
}