Developers
API ReferenceTo Do Item

Create ToDo

POST
/user/to-do-items

Create ToDo

Authorization<token>

Value for the Authorization header parameter.

In: header

Request Body

The new ToDoItem resource

TypeScript Definitions

Use the request body type in TypeScript.

name*string
Lengthlength <= 100

Response Body

curl -X POST "https://example.com/user/to-do-items" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "weight": 0,  "name": "string",  "isChecked": true,  "checkedAt": "2019-08-24T14:15:22Z"}