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
Path parameters
-
factFindRequest_uuid
string Required -
factFindSchemaSection_uuid
string Required
Body
Required
-
fact_find_pass_uuid
string Required The fact-find pass that is completing the fact-find.
-
is_complete
boolean Required 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":"5ea63535-30ed-46eb-989f-2da5c42b72bd","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": "5ea63535-30ed-46eb-989f-2da5c42b72bd",
"is_complete": true
}