Create a schema section
Headers
-
Content-Type
string -
Accept
string -
X-PLANNR-ACCOUNT-UUID
string
Path parameters
-
factFindSchema_uuid
string Required
Body
Required
-
name
string Required The name of the fact-find schema section. Must be unique.
-
front_end_section
string Required The reference to the Plannr front-end. Must be unique. Available options:basic_details, be_iq_profiler, contact_details, debt, dependants, employment, employment_and_income, estate, expenses, fixed_assets, goals, health, income, introduction, investments, personal_details, plans, property, protection, state_pension, summary, vulnerability
-
introduction_html
string The HTML that should be displayed on the section.
POST
/api/v1/fact-find/schema/{factFindSchema_uuid}/section
curl \
--request POST 'https://api.plannrcrm.com/api/v1/fact-find/schema/factFindSchema_uuid/section' \
--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 '{"name":"Basic Details","front_end_section":"basic_details","introduction_html":"\u003cp\u003ePlease tell us your \u003cb\u003ebasic details.\u003c/b\u003e\u003c/p\u003e"}'
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
{
"name": "Basic Details",
"front_end_section": "basic_details",
"introduction_html": "<p>Please tell us your <b>basic details.</b></p>"
}
Response examples (201)
{
"name": "Basic Details",
"uuid": "f89e732c-f119-4ede-87ba-6e516a9bbef3",
"position": 1,
"created_at": "2025-04-02T13:27:58+01:00",
"updated_at": "2025-04-02T13:27:58+01:00",
"front_end_section": "basic_details",
"introduction_html": "<p>Please tell us your <b>basic details.</b></p>"
}