Update a given section progress
Requires a fact-find pass to be passed in.
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
Body Required
-
The fact-find pass that is completing the fact-find.
-
Determines if the section is complete.
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
}