v1

latestOpenAPI 3.0.32026-07-177413.0 KB
TodoService

CreateTodo creates a new todo item and returns the persisted record with the server-assigned id, create_time, and update_time populated. Returns INVALID_ARGUMENT if the request payload fails validation.

post/v1/todos/create

Request body

idstring

Server-assigned unique 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.

createTimestring date-time

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

updateTimestring date-time

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

Response

OK

idstring

Server-assigned unique 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.

createTimestring date-time

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

updateTimestring date-time

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

All 7 operations