curl --request PATCH \
--url http://localhost:3333/v1/framework-editor/task-template/{id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "Monthly Security Review",
"description": "Review and update security policies on a monthly basis",
"frequency": "monthly",
"department": "it"
}
'Update a framework editor task template by ID
curl --request PATCH \
--url http://localhost:3333/v1/framework-editor/task-template/{id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "Monthly Security Review",
"description": "Review and update security policies on a monthly basis",
"frequency": "monthly",
"department": "it"
}
'API key for authentication
Organization ID (required for session auth, optional for API key auth)
Framework editor task template ID
"frk_tt_abc123def456"
Update framework editor task template data
Task template name
"Monthly Security Review"
Detailed description of the task template
"Review and update security policies on a monthly basis"
Frequency of the task
monthly, quarterly, yearly "monthly"
Department responsible for the task
none, admin, gov, hr, it, itsm, qms "it"
Successfully updated framework editor task template
Was this page helpful?