PUT
/
checklists
/
items
/
{checklistItemPublicId}
Update a checklist item
curl --request PUT \
  --url https://kan.bn/api/v1/checklists/items/{checklistItemPublicId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "title": "<string>",
  "completed": true
}'
{
  "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

checklistItemPublicId
string
required
Required string length: 12

Body

application/json

Response

Successful response

The response is of type object.