POST
/
workspace
/
{ws_id}
/
case_management
/
table
/
tasks
curl --request POST \
  --url https://app.blinkops.com/api/v1/workspace/{ws_id}/case_management/table/tasks \
  --header 'BLINK-API-KEY: <api-key>' \
  --header 'Content-Type: */*' \
  --data '{
  "assigned_to": [
    "john.doe@blinkops.com"
  ],
  "description": "Investigate the malware alert generated by CrowdStrike Falcon",
  "due_date": "2024-06-29T21:00:00.000Z",
  "is_blocking": false,
  "name": "Investigate Malware Alert",
  "priority": 1,
  "status": "OPEN"
}'
{
  "assigned_to": [
    "john.doe@blinkops.com"
  ],
  "description": "Investigate the malware alert generated by CrowdStrike Falcon",
  "due_date": "2024-06-29T21:00:00.000Z",
  "is_blocking": false,
  "name": "Investigate Malware Alert",
  "priority": 1,
  "status": "OPEN"
}

Authorizations

Use your API key to access BlinkOps API. To generate an API key, please log in to your BlinkOps account and navigate to the API Keys section in the user settings page. Add the generated key to your request headers as BLINK-API-KEY.

Path Parameters

ws_id
string
required

Workspace ID

Body

*/*
Task Data
assigned_to
string[]
Example:
["john.doe@blinkops.com"]
description
string
Example:

"Investigate the malware alert generated by CrowdStrike Falcon"

due_date
string
Example:

"2024-06-29T21:00:00.000Z"

is_blocking
boolean
Example:

false

name
string
Example:

"Investigate Malware Alert"

priority
integer
Example:

1

status
enum<string>
Available options:
OPEN,
IN PROGRESS,
CLOSED
Example:

"OPEN"

Response

200
*/*
OK
assigned_to
string[]
Example:
["john.doe@blinkops.com"]
description
string
Example:

"Investigate the malware alert generated by CrowdStrike Falcon"

due_date
string
Example:

"2024-06-29T21:00:00.000Z"

is_blocking
boolean
Example:

false

name
string
Example:

"Investigate Malware Alert"

priority
integer
Example:

1

status
enum<string>
Available options:
OPEN,
IN PROGRESS,
CLOSED
Example:

"OPEN"