Create or update a fact-find submission Run in API Explorer
Ask AI
PUT
/api/v2/submissions/{factFindSession_uuid}/account/{account_uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v2/submissions/6ff8f7f6-1eb3-3525-be4a-3932c805afed/account/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (201)
{
"uuid": "3ff0cf63-6f05-4e3f-998e-316bd4319419",
"created_at": "2026-04-18T17:51:47+01:00",
"updated_at": "2026-04-18T17:51:47+01:00",
"fact_find_answers": {
"fact_find_question": {
"uuid": {
"example": "62063218-89c2-4f7c-b6f4-796a027dee27",
"description": "The UUID of the resource.",
"collection": false
},
"created_at": {
"example": "2026-04-18T17:51:47+01:00",
"description": "The timestamp of when the resource was created.",
"collection": false
},
"updated_at": {
"example": "2026-04-18T17:51:47+01:00",
"description": "The timestamp of when the resource was updated.",
"collection": false
},
"field_name": {
"example": "Field Name",
"description": "The name of the field.",
"collection": false
},
"position": {
"example": "Position",
"description": "The position/order of this question within the block.",
"collection": false
},
"is_required": {
"example": "Is Required",
"description": "Bool to indicate if the question is required.",
"collection": false
},
"is_visible": {
"example": "Is Visible",
"description": "Bool to indicate if the question is visible.",
"collection": false
},
"has_conditional": {
"example": "Has Condition",
"description": "Bool to indicate if the question has any conditions.",
"collection": false
},
"condition_type": {
"example": "Condition Type",
"description": "ALL/ANY.",
"collection": false
}
},
"answer": "Stored Answer (if any)",
"previous_value": "Extracted previous value from account or block even if no question exists",
"block": "The Block enum the question belongs to"
}
}