POST
/
checklists
/
{checklistPublicId}
/
items
Add an item to a checklist
curl --request POST \
  --url https://kan.bn/api/v1/checklists/{checklistPublicId}/items \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "title": "<string>"
}'
{
  "publicId": "<string>",
  "title": "<string>",
  "completed": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

checklistPublicId
string
required
Required string length: 12

Body

application/json

Response

Successful response

The response is of type object.