Create a Task
POST/workspace/:ws_id/case_management/table/tasks
Adds a new Task record.
Request
Path Parameters
ws_id stringrequired
Workspace ID
- application/json
Body
required
Task Data
assigned_to string[]
description string
due_date string
is_blocking boolean
name string
priority integer
Possible values: [1
, 2
, 3
, 4
, 5
]
status string
Possible values: [OPEN
, IN PROGRESS
, CLOSED
]
Responses
- 200
- 400
OK
- */*
- Schema
- Example (from schema)
Schema
assigned_to string[]
description string
due_date string
is_blocking boolean
name string
priority integer
Possible values: [1
, 2
, 3
, 4
, 5
]
status string
Possible values: [OPEN
, IN PROGRESS
, CLOSED
]
{
"assigned_to": [
"john.doe@blinkops.com"
],
"description": "Investigate the malware alert generated by CrowdStrike Falcon",
"due_date": "2024-06-29T21:00:00Z",
"is_blocking": false,
"name": "Investigate Malware Alert",
"priority": 1,
"status": "OPEN"
}
Failed to create record
- */*
- Schema
- Example (from schema)
Schema
data
details string
identifier string
message string
status integer
user_error
{
"data": {},
"details": "string",
"identifier": "string",
"message": "string",
"status": 404,
"user_error": {}
}
Loading...