Skip to main content
PATCH
/
v1
/
framework-editor
/
task-template
/
{id}
Update framework editor task template
curl --request PATCH \
  --url https://api.trycomp.ai/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"
}'
"<any>"

Authorizations

X-API-Key
string
header
required

API key for authentication

Headers

X-Organization-Id
string

Organization ID (required for session auth, optional for API key auth)

Path Parameters

id
string
required

Framework editor task template ID

Example:

"frk_tt_abc123def456"

Body

application/json

Update framework editor task template data

name
string

Task template name

Example:

"Monthly Security Review"

description
string

Detailed description of the task template

Example:

"Review and update security policies on a monthly basis"

frequency
enum<string>

Frequency of the task

Available options:
monthly,
quarterly,
yearly
Example:

"monthly"

department
enum<string>

Department responsible for the task

Available options:
none,
admin,
gov,
hr,
it,
itsm,
qms
Example:

"it"

Response

Successfully updated framework editor task template

The response is of type any.

I