Skip to main content
POST
/
v1
/
admin
/
organizations
/
{orgId}
/
tasks
Create a task for an organization (admin)
curl --request POST \
  --url http://localhost:3333/v1/admin/organizations/{orgId}/tasks \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "Review access controls",
  "description": "Review and update access control policies quarterly",
  "status": "todo",
  "frequency": "daily",
  "department": "none"
}
'

Path Parameters

orgId
string
required

Body

application/json
title
string
required

Title of the task

Example:

"Review access controls"

description
string
required

Description of the task

Example:

"Review and update access control policies quarterly"

status
enum<string>

Task status

Available options:
todo,
in_progress,
in_review,
done,
not_relevant,
failed
frequency
enum<string>

Task frequency

Available options:
daily,
weekly,
monthly,
quarterly,
yearly
department
enum<string>

Department

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

Response

201 - undefined