Skip to main content
POST
/
v1
/
framework-editor
/
task-template
Create a framework editor task template
curl --request POST \
  --url http://localhost:3333/v1/framework-editor/task-template \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Monthly Security Review",
  "description": "Review and update security policies on a monthly basis",
  "frequency": "monthly",
  "department": "it"
}
'

Query Parameters

frameworkId
string
required

Body

application/json

Create a new framework editor task template

name
string
required

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

201 - undefined