Skip to main content
POST
/
v1
/
tasks
Create task
curl --request POST \
  --url https://api.usenaive.ai/v1/tasks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "assignee": "<string>",
  "objective_id": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

Workspace API key. Create one via the dashboard or POST /v1/auth/keys.

Body

application/json
title
string
description
string
assignee
string
objective_id
string
priority
enum<string>
Available options:
low,
medium,
high,
critical

Response

201 - application/json

Created.

The response is of type object.