POST
/
api
/
2023-01
/
checklist_items
curl --request POST \
  --url https://api.buildr.com/api/2023-01/checklist_items \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "checklist_item": {
    "task_id": "921",
    "name": "Plan time to meet for discussing budget",
    "position": 1,
    "completed_at": "2023-07-25T12:00:00Z"
  }
}'
{
  "checklist_item": {
    "id": "827",
    "created_at": "2023-02-14T18:13:00Z",
    "updated_at": "2023-04-03T20:16:30Z",
    "name": "Plan time to meet for discussing budget",
    "position": 1,
    "completed_at": "2023-07-25T12:00:00Z"
  }
}

Headers

Authorization
string
required

Body

application/json
checklist_item
object

Response

201 - application/json
checklist_item
object
required