Retrieve all the sections for the request with progress.
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
GET
/api/v1/fact-find/request/{factFindRequest_uuid}/section
curl \
-X GET https://api.plannrcrm.com/api/v1/fact-find/request/factFindRequest_uuid/section \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
{
"name": "Basic Details",
"uuid": "2fb1791e-315c-4b7c-8fb5-001560df6cc6",
"position": 1,
"progress": 50,
"created_at": "2025-01-17T11:18:32+00:00",
"updated_at": "2025-01-17T11:18:32+00:00",
"is_complete": true,
"front_end_section": "basic_details",
"introduction_html": "<p>Please tell us your <b>basic details.</b></p>"
}
]
}