Skip to main content
PATCH
/
v1
/
framework-editor
/
policy-template
/
{id}
cURL
curl --request PATCH \
  --url http://localhost:3333/v1/framework-editor/policy-template/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Information Security Policy",
  "description": "Establishes information security practices",
  "frequency": "annually",
  "department": "it"
}
'

Path Parameters

id
string
required

Body

application/json
name
string
Example:

"Information Security Policy"

description
string
Example:

"Establishes information security practices"

frequency
enum<string>
Available options:
monthly,
quarterly,
yearly
Example:

"annually"

department
enum<string>
Available options:
none,
admin,
gov,
hr,
it,
itsm,
qms
Example:

"it"

Response

200 - undefined