write:board:trelloTrelloID
Requiredstring
oneOf [string, number]
TrelloID
Success
1
2
3
curl --request POST \
--url 'https://api.trello.com/1/checklists?idCard=5abbe4b7ddc1b351ef961414' \
--header 'Authorization: Bearer <access_token>'read:board:trelloTrelloID
Requiredstring
string
string
string
Success
1
2
3
curl --request GET \
--url 'https://api.trello.com/1/checklists/{id}' \
--header 'Authorization: Bearer <access_token>'Update an existing checklist.
read:board:trellowrite:board:trelloTrelloID
Requiredstring
oneOf [string, number]
Success
1
2
3
curl --request PUT \
--url 'https://api.trello.com/1/checklists/{id}' \
--header 'Authorization: Bearer <access_token>'Delete a checklist
write:board:trelloTrelloID
RequiredSuccess
1
2
3
curl --request DELETE \
--url 'https://api.trello.com/1/checklists/{id}' \
--header 'Authorization: Bearer <access_token>'read:board:trelloTrelloID
Requiredstring
RequiredSuccess
1
2
3
curl --request GET \
--url 'https://api.trello.com/1/checklists/{id}/{field}' \
--header 'Authorization: Bearer <access_token>'read:board:trellowrite:board:trelloTrelloID
Requiredstring
RequiredoneOf [oneOf [string, number], TrelloID]
RequiredSuccess
1
2
3
curl --request PUT \
--url 'https://api.trello.com/1/checklists/{id}/{field}?value={value}' \
--header 'Authorization: Bearer <access_token>'read:board:trelloTrelloID
Requiredstring
Success
1
2
3
curl --request GET \
--url 'https://api.trello.com/1/checklists/{id}/board' \
--header 'Authorization: Bearer <access_token>'read:board:trelloTrelloID
RequiredSuccess
1
2
3
curl --request GET \
--url 'https://api.trello.com/1/checklists/{id}/cards' \
--header 'Authorization: Bearer <access_token>'read:board:trelloTrelloID
Requiredstring
string
Success
1
2
3
curl --request GET \
--url 'https://api.trello.com/1/checklists/{id}/checkItems' \
--header 'Authorization: Bearer <access_token>'write:board:trelloTrelloID
Requiredstring
RequiredoneOf [string, number]
boolean
string
number
TrelloID
Success
1
2
3
curl --request POST \
--url 'https://api.trello.com/1/checklists/{id}/checkItems?name={name}' \
--header 'Authorization: Bearer <access_token>'read:board:trelloTrelloID
RequiredTrelloID
Requiredstring
Success
1
2
3
curl --request GET \
--url 'https://api.trello.com/1/checklists/{id}/checkItems/{idCheckItem}' \
--header 'Authorization: Bearer <access_token>'Remove an item from a checklist
write:board:trelloTrelloID
RequiredTrelloID
RequiredSuccess
1
2
3
curl --request DELETE \
--url 'https://api.trello.com/1/checklists/{id}/checkItems/{idCheckItem}' \
--header 'Authorization: Bearer <access_token>'Rate this page: