curl --request POST \
--url http://localhost:3333/v1/admin/organizations/{orgId}/policies \
--header 'Content-Type: application/json' \
--data '
{
"name": "Data Privacy Policy",
"description": "Outlines data handling procedures",
"status": "draft",
"frequency": "yearly",
"department": "it"
}
'curl --request POST \
--url http://localhost:3333/v1/admin/organizations/{orgId}/policies \
--header 'Content-Type: application/json' \
--data '
{
"name": "Data Privacy Policy",
"description": "Outlines data handling procedures",
"status": "draft",
"frequency": "yearly",
"department": "it"
}
'Name of the policy
"Data Privacy Policy"
Description of the policy
"Outlines data handling procedures"
Status of the policy
draft, published, needs_review "draft"
Review frequency
monthly, quarterly, yearly "yearly"
Department this policy applies to
none, admin, gov, hr, it, itsm, qms "it"
Was this page helpful?