---
title: "Create todo item"
method: POST
path: "/v1/todos"
tags: ["Todo"]
---

# Create todo item

`POST /v1/todos`

Create a new todo item.

## Request body

- object
  - `title` string, required — Title of the todo item.
  - `description` string, nullable — Description of the todo item.
  - `priority` 'normal' | 'important' | 'urgent' | 'critical', required — Priority of the todo item.
  - `owned_by` string, required — ID of the user who owns the todo item.
  - `due_date` string, date-time, nullable — Completion due date of the todo item.

## Response `201`

Example response

- object
  - `id` string, required — ID of the newly created resource.

## Other responses

- `400` — Bad request
- `401` — Unauthorized request
- `403` — Forbidden
- `500` — Internal Server Error

---

[API](https://skmtc.net/opcotech/apis/elemo-api.md) · [All operations](https://skmtc.net/opcotech/apis/elemo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/opcotech/elemo-api/versions/6ff580b1e226/schema)
