Update a fact-find question condition Run in API Explorer
Ask AI
PUT
/api/v2/fact-find/factFindQuestionCondition/{uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v2/fact-find/factFindQuestionCondition/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"fact_find_question_id":1234,"target_fact_find_question_id":1234,"operator":"equals","value":"5000","has_conditional":false,"condition_type":"Condition Type"}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"fact_find_question_id": 1234,
"target_fact_find_question_id": 1234,
"operator": "equals",
"value": "5000",
"has_conditional": false,
"condition_type": "Condition Type"
}
Response examples (200)
{
"uuid": "278ee943-6cf7-4465-bd4a-8180c63780ab",
"operator": "equals",
"value": "Value"
}