v1

latestOpenAPI 3.0.32026-07-17542197.8 KB
Todo

Create todo item

Create a new todo item.

post/v1/todos

Request body

titlestring required

Title of the todo item.

descriptionstring nullable

Description of the todo item.

priority'normal' | 'important' | 'urgent' | 'critical' required

Priority of the todo item.

owned_bystring required

ID of the user who owns the todo item.

due_datestring date-time nullable

Completion due date of the todo item.

Example request

{
  "title": "Do something great",
  "description": "I'll make the world a better place today.",
  "priority": "urgent"
}

Response

Example response

idstring required

ID of the newly created resource.