latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-157413.3 KB

bbd5b5339910

TodoService

GetTodo returns a single todo item by its id. Returns NOT_FOUND if no todo exists with the supplied id.

get/v1/todos/{id}

Path parameters

idstring required

Unique identifier of the todo item to retrieve.

Response

OK

idstring

Application-generated UUIDv7 identifier. Read-only on create.

titlestring

Short human-readable title.

contentstring

Detailed description or notes for the todo item.

completedboolean

Whether the todo item has been completed.

createdAtstring date-time

Time at which the todo item was created. Server-assigned, read-only.

updatedAtstring date-time

Time at which the todo item was last modified. Server-assigned, read-only.

statusinteger

Lifecycle state. Server-assigned, read-only: call DeleteTodo to move an item to TODO_STATUS_DELETED.