My Developer PortalMy Developer Portal
  • Pricing
  • Documentation
  • API Reference
Information
Todo
    Get all todosgetCreate a new todopostUpdate a todoputDelete a tododelete
Other endpoints
    Generate threadspost
Schemas
powered by Zuplo
Todo API
Todo API

Schemas


Todo

A complete todo item as returned by the API, including its system-assigned ID.
id
​integer · required

The todo ID

title
​string · required

The todo title

completed
​boolean · required

Whether the todo is completed

userId
​integer · required

The user ID who owns the todo

CreateTodo

The request body for creating a new todo. Only a title and userId are required.
title
​string · required

The todo title

userId
​integer · required

The user ID who owns the todo

completed
​boolean

Whether the todo is completed

Default: false

UpdateTodo

The request body for updating a todo. All fields are optional so you can patch individual properties.
title
​string

The todo title

completed
​boolean

Whether the todo is completed

userId
​integer

The user ID who owns the todo

On this page
  • Todo
  • CreateTodo
  • UpdateTodo