Skip to main content
POST
/
api
/
v1
/
accounts
/
{account_id}
/
projects
/
{id}
/
tasks
Create project task
curl --request POST \
  --url https://connect.voxys.ai/api/v1/accounts/{account_id}/projects/{id}/tasks \
  --header 'Content-Type: application/json' \
  --header 'api_access_token: <api-key>' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "status": "todo",
  "assignee_id": 123,
  "due_at": "2023-11-07T05:31:56Z"
}
'
{
  "id": 123,
  "project_id": 123,
  "title": "<string>",
  "description": "<string>",
  "assignee_id": 123,
  "due_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://developers.voxys.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

api_access_token
string
header
required

All API requests must include the api_access_token header with a valid agent or administrator token.

Body

application/json
title
string
required
description
string
status
enum<string>
default:todo
Available options:
todo,
in_progress,
done
assignee_id
integer
due_at
string<date-time>

Response

Task created

id
integer
project_id
integer
title
string
description
string
status
enum<string>
Available options:
todo,
in_progress,
done
assignee_id
integer
due_at
string<date-time>
created_at
string<date-time>