Get information about a single Label.
read:board:trelloTrelloID
Requiredstring
Success
1
2
3
curl --request GET \
--url 'https://api.trello.com/1/labels/{id}' \
--header 'Authorization: Bearer <access_token>'Update a label by ID.
read:board:trellowrite:board:trelloTrelloID
Requiredstring
Color
Success
1
2
3
curl --request PUT \
--url 'https://api.trello.com/1/labels/{id}' \
--header 'Authorization: Bearer <access_token>'Delete a label by ID.
write:board:trelloTrelloID
RequiredSuccess
1
2
3
curl --request DELETE \
--url 'https://api.trello.com/1/labels/{id}' \
--header 'Authorization: Bearer <access_token>'Update a field on a label.
read:board:trellowrite:board:trellostring
Requiredstring
RequiredTrelloID
RequiredSuccess
1
2
3
curl --request PUT \
--url 'https://api.trello.com/1/labels/{id}/{field}?value=5abbe4b7ddc1b351ef961414' \
--header 'Authorization: Bearer <access_token>'Create a new Label on a Board.
write:board:trellostring
RequiredColor
Requiredstring
RequiredSuccess
1
2
3
curl --request POST \
--url 'https://api.trello.com/1/labels?name={name}&color={color}&idBoard={idBoard}' \
--header 'Authorization: Bearer <access_token>'Rate this page: