---
title: "Create Todo"
method: POST
path: "/todos"
tags: ["Standard Todo List Endpoints"]
---

# Create Todo

`POST /todos`

Creates a todo list item.

## Headers

- `Content-Type` string, required

## Request body

- InsertTodoObject
  - `OwnerID` integer, required — The userId that created the todo list item.
  - `Title` string, required — The title of the todo list item.
  - `Completed` boolean, required — Whether or not the todo list item is completed.

## Response `201`

The created todo list item

- TodoObject
  - `ID` integer, required
  - `OwnerID` integer, required
  - `Title` string, required
  - `Completed` boolean, required

## Other responses

- `400` — Schema validation error

---

[API](https://skmtc.dev/openid/apis/authzen-todo.md) · [All operations](https://skmtc.dev/openid/apis/authzen-todo/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openid/authzen-todo/revisions/c0276fd788b1/schema)
