List automations using fact find template. Run in API Explorer
Ask AI
List the automations that still send this fact-find template, so the UI can warn the user before they attempt to archive it. Empty when nothing blocks archiving.
GET
/api/v2/fact-find/templates/{factFindTemplate_uuid}/automations
curl \
--request GET 'https://api.plannrcrm.com/api/v2/fact-find/templates/6ff8f7f6-1eb3-3525-be4a-3932c805afed/automations' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
[
{
"uuid": "09714eb9-09bc-499a-8ddb-02e6b755e7ce",
"name": "Welcome new client",
"is_active": true,
"step_count": 1
}
]
]
}