how to delete a list in trello
Cards
Create a new Card
POST /1/cards
Create a new card
Request
Query parameters
string
The name for the card
string
The description for the card
oneOf [ string , number ]
The position of the new card. top
, bottom
, or a positive float
string
A due date for the card
Format : date
boolean
string
The ID of the list the card should be created in
Pattern : ^[0-9a-fA-F]{24}$
Array<string>
Comma-separated list of member IDs to add to the card
Array<string>
Comma-separated list of label IDs to add to the card
string
A URL starting with http://
or https://
Format : url
string
Format : binary
string
The mimeType of the attachment. Max length 256
string
The ID of a card to copy into the new card
Pattern : ^[0-9a-fA-F]{24}$
string
If using idCardSource
you can specify which properties to copy over. all
or comma-separated list of: attachments,checklists,customFields,comments,due,labels,members,start,stickers
Style : form
, Default : all
Valid values: all
, attachments
, checklists
, comments
, customFields
, due
, labels
, members
, start
, stickers
string
For use with/by the Map View
string
For use with/by the Map View
string
For use with/by the Map View. Should take the form latitude,longitude
Example
1 2 3
curl --request POST \ --url 'https://api.trello.com/1/cards?idList=5abbe4b7ddc1b351ef961414' \ --header 'Accept: application/json'
Responses
Success
Content type | Value |
---|---|
application/json | Card |
Get a Card
GET /1/cards/{id}
Get a card by its ID
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
all
or a comma-separated list of fields. Defaults: badges, checkItemStates, closed, dateLastActivity, desc, descData, due, email, idBoard, idChecklists, idLabels, idList, idMembers, idShort, idAttachmentCover, manualCoverAttachment, labels, name, pos, shortUrl, url
string
oneOf [ string , boolean ]
true
, false
, or cover
Default : false
string
all
or a comma-separated list of attachment fields
Default : all
boolean
Whether to return member objects for members on the card
Default : false
string
all
or a comma-separated list of member fields. Defaults: avatarHash, fullName, initials, username
boolean
Whether to return member objects for members who voted on the card
Default : false
string
all
or a comma-separated list of member fields. Defaults: avatarHash, fullName, initials, username
boolean
Default : false
string
Whether to return the checklists on the card. all
or none
Default : none
string
all
or a comma-separated list of idBoard,idCard,name,pos
Default : all
boolean
Whether to return the board object the card is on
Default : false
string
all
or a comma-separated list of board fields. Defaults: name, desc, descData, closed, idOrganization, pinned, url, prefs
boolean
Default : false
boolean
Whether to include pluginData on the card with the response
Default : false
boolean
Whether to include sticker models with the response
Default : false
string
all
or a comma-separated list of sticker fields
Default : all
boolean
Whether to include the customFieldItems
Default : false
Example
1 2 3
curl --request GET \ --url 'https://api.trello.com/1/cards/{id}' \ --header 'Accept: application/json'
Responses
Success
Content type | Value |
---|---|
application/json | Card |
Update a Card
PUT /1/cards/{id}
Update a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
The new name for the card
string
The new description for the card
boolean
Whether the card should be archived (closed: true)
string
Comma-separated list of member IDs
Style : form
, Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the image attachment the card should use as its cover, or null for none
Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the list the card should be in
Pattern : ^[0-9a-fA-F]{24}$
string
Comma-separated list of label IDs
Style : form
, Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the board the card should be on
Pattern : ^[0-9a-fA-F]{24}$
oneOf [ string , number ]
The position of the card in its list. top
, bottom
, or a positive float
string
When the card is due, or null
Nullable : true
, Format : date
boolean
Whether the due date should be marked complete
boolean
Whether the member is should be subscribed to the card
string
For use with/by the Map View
string
For use with/by the Map View
string
For use with/by the Map View. Should be latitude,longitude
object
Updates the card's cover
Option | Values | About |
---|---|---|
color | pink , yellow , lime , blue , black , orange , red , purple , sky , green | Makes the cover a solid color . |
brightness | dark , light | Determines whether the text on the cover should be dark or light. |
url | An unsplash URL: https://images.unsplash.com | Used if making an image the cover. Only Unsplash URLs work. |
idAttachment | ID of an attachment on the card | Used if setting an attached image as the cover. |
size | normal , full | Determines whether to show the card name on the cover, or below it. |
brightness
can be sent alongside any of the other parameters, but all of the other parameters are mutually exclusive; you can not have the cover be a color
and an idAttachment
at the same time.
On the brightness options, setting it to light will make the text on the card cover dark:
And vice versa, setting it to dark will make the text on the card cover light:
Example
1 2 3
curl --request PUT \ --url 'https://api.trello.com/1/cards/{id}' \ --header 'Accept: application/json'
Responses
Success
Content type | Value |
---|---|
application/json | Card |
Delete a Card
DELETE /1/cards/{id}
Delete a Card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Example
1 2
curl --request DELETE \ --url 'https://api.trello.com/1/cards/{id}'
Responses
Success
A schema has not been defined for this response code.
Get a field on a Card
GET /1/cards/{id}/{field}
Get a specific property of a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
string
The desired field.
Valid values: id
, address
, badges
, checkItemStates
, closed
, coordinates
, creationMethod
, dueComplete
, dateLastActivity
, desc
...(Show more)
Example
1 2 3
curl --request GET \ --url 'https://api.trello.com/1/cards/{id}/{field}' \ --header 'Accept: application/json'
Responses
Success
Content type | Value |
---|---|
application/json | Card |
Get Actions on a Card
GET /1/cards/{id}/actions
List the Actions on a Card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
Default : commentCard, updateCard:idList
Example
1 2 3
curl --request GET \ --url 'https://api.trello.com/1/cards/{id}/actions' \ --header 'Accept: application/json'
Responses
Success
Content type | Value |
---|---|
application/json | Array<Action> |
Get Attachments on a Card
GET /1/cards/{id}/attachments
List the attachments on a card
Request
Path parameters
string
all
or a comma-separated list of attachment fields
Default : all
string
Use cover
to restrict to just the cover attachment
Default : false
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Example
1 2 3
curl --request GET \ --url 'https://api.trello.com/1/cards/{id}/attachments' \ --header 'Accept: application/json'
Responses
Success
Content type | Value |
---|---|
application/json | Array<Attachment> |
Create Attachment On Card
POST /1/cards/{id}/attachments
Create an Attachment to a Card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
The name of the attachment. Max length 256.
string
The file to attach, as multipart/form-data
Format : binary
string
The mimeType of the attachment. Max length 256
string
A URL to attach. Must start with http://
or https://
boolean
Determines whether to use the new attachment as a cover for the Card.
Default : false
Example
1 2 3
curl --request POST \ --url 'https://api.trello.com/1/cards/{id}/attachments' \ --header 'Accept: application/json'
Responses
Success
Content type | Value |
---|---|
application/json | Array<Attachment> |
Get an Attachment on a Card
GET /1/cards/{id}/attachments/{idAttachment}
Get a specific Attachment on a Card.
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the Attachment
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
Array<string>
The Attachment fields to be included in the response.
Style : form
Example
1 2 3
curl --request GET \ --url 'https://api.trello.com/1/cards/{id}/attachments/{idAttachment}' \ --header 'Accept: application/json'
Responses
Success
Content type | Value |
---|---|
application/json | Array<Attachment> |
Delete an Attachment on a Card
DELETE /1/cards/{id}/attachments/{idAttachment}
Delete an Attachment
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the Attachment
Pattern : ^[0-9a-fA-F]{24}$
Example
1 2
curl --request DELETE \ --url 'https://api.trello.com/1/cards/{id}/attachments/{idAttachment}'
Responses
Success
A schema has not been defined for this response code.
Get the Board the Card is on
GET /1/cards/{id}/board
Get the board a card is on
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
all
or a comma-separated list of board fields
Default : all
Example
1 2
curl --request GET \ --url 'https://api.trello.com/1/cards/{id}/board'
Responses
Success
A schema has not been defined for this response code.
Get checkItems on a Card
GET /1/cards/{id}/checkItemStates
Get the completed checklist items on a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
all
or a comma-separated list of: idCheckItem
, state
Default : all
Example
1 2
curl --request GET \ --url 'https://api.trello.com/1/cards/{id}/checkItemStates'
Responses
Success
A schema has not been defined for this response code.
Get Checklists on a Card
GET /1/cards/{id}/checklists
Get the checklists on a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
all
or none
Default : all
Valid values: all
, none
string
all
or a comma-separated list of: name,nameData,pos,state,type
Style : form
, Default : name,nameData,pos,state
Valid values: name
, nameData
, pos
, state
, type
string
all
or none
Default : all
Valid values: all
, none
string
all
or a comma-separated list of: idBoard,idCard,name,pos
Style : form
, Default : all
Valid values: all
, name
, nameData
, pos
, state
, type
Example
1 2
curl --request GET \ --url 'https://api.trello.com/1/cards/{id}/checklists'
Responses
Success
A schema has not been defined for this response code.
Create Checklist on a Card
POST /1/cards/{id}/checklists
Create a new checklist on a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
The name of the checklist
string
The ID of a source checklist to copy into the new one
Pattern : ^[0-9a-fA-F]{24}$
string
The position of the checklist on the card. One of: top
, bottom
, or a positive number.
Example
1 2
curl --request POST \ --url 'https://api.trello.com/1/cards/{id}/checklists'
Responses
Success
A schema has not been defined for this response code.
Get checkItem on a Card
GET /1/cards/{id}/checkItem/{idCheckItem}
Get a specific checkItem on a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the checkitem
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
all
or a comma-separated list of name,nameData,pos,state,type
Default : name,nameData,pos,state
Example
1 2
curl --request GET \ --url 'https://api.trello.com/1/cards/{id}/checkItem/{idCheckItem}'
Responses
Success
A schema has not been defined for this response code.
Update a checkItem on a Card
PUT /1/cards/{id}/checkItem/{idCheckItem}
Update an item in a checklist on a card.
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the checkitem
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
The new name for the checklist item
string
One of: complete
, incomplete
Valid values: complete
, incomplete
string
The ID of the checklist this item is in
Pattern : ^[0-9a-fA-F]{24}$
oneOf [ string , number ]
top
, bottom
, or a positive float
Example
1 2
curl --request PUT \ --url 'https://api.trello.com/1/cards/{id}/checkItem/{idCheckItem}'
Responses
Success
A schema has not been defined for this response code.
Delete checkItem on a Card
DELETE /1/cards/{id}/checkItem/{idCheckItem}
Delete a checklist item
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the checkitem
Pattern : ^[0-9a-fA-F]{24}$
Example
1 2
curl --request DELETE \ --url 'https://api.trello.com/1/cards/{id}/checkItem/{idCheckItem}'
Responses
Success
A schema has not been defined for this response code.
Get the List of a Card
GET /1/cards/{id}/list
Get the list a card is in
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
all
or a comma-separated list of list fields
Default : all
Example
1 2
curl --request GET \ --url 'https://api.trello.com/1/cards/{id}/list'
Responses
Success
A schema has not been defined for this response code.
Get the Members of a Card
GET /1/cards/{id}/members
Get the members on a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
all
or a comma-separated list of member fields
Default : avatarHash,fullName,initials,username
Example
1 2
curl --request GET \ --url 'https://api.trello.com/1/cards/{id}/members'
Responses
Success
A schema has not been defined for this response code.
Get Members who have voted on a Card
GET /1/cards/{id}/membersVoted
Get the members who have voted on a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
all
or a comma-separated list of member fields
Default : avatarHash,fullName,initials,username
Example
1 2
curl --request GET \ --url 'https://api.trello.com/1/cards/{id}/membersVoted'
Responses
Success
A schema has not been defined for this response code.
Add Member vote to Card
POST /1/cards/{id}/membersVoted
Vote on the card for a given member.
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
The ID of the member to vote 'yes' on the card
Pattern : ^[0-9a-fA-F]{24}$
Example
1 2
curl --request POST \ --url 'https://api.trello.com/1/cards/{id}/membersVoted?value=5abbe4b7ddc1b351ef961414'
Responses
Success
A schema has not been defined for this response code.
Get pluginData on a Card
GET /1/cards/{id}/pluginData
Get any shared pluginData on a card.
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Example
1 2
curl --request GET \ --url 'https://api.trello.com/1/cards/{id}/pluginData'
Responses
Success
A schema has not been defined for this response code.
Get Stickers on a Card
GET /1/cards/{id}/stickers
Get the stickers on a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
all
or a comma-separated list of sticker fields
Default : all
Example
1 2
curl --request GET \ --url 'https://api.trello.com/1/cards/{id}/stickers'
Responses
Success
A schema has not been defined for this response code.
Add a Sticker to a Card
POST /1/cards/{id}/stickers
Add a sticker to a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
For custom stickers, the id of the sticker. For default stickers, the string identifier (like 'taco-cool', see below)
number
The top position of the sticker, from -60 to 100
Minimum : -60
, Maximum : 100
, Format : float
number
The left position of the sticker, from -60 to 100
Minimum : -60
, Maximum : 100
, Format : float
integer
The z-index of the sticker
number
The rotation of the sticker
Default : 0
, Minimum : 0
, Maximum : 360
, Format : float
Example
1 2
curl --request POST \ --url 'https://api.trello.com/1/cards/{id}/stickers?image={image}&top={top}&left={left}&zIndex={zIndex}'
Responses
Success
A schema has not been defined for this response code.
Get a Sticker on a Card
GET /1/cards/{id}/stickers/{idSticker}
Get a specific sticker on a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the sticker
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
all
or a comma-separated list of sticker fields
Default : all
Example
1 2
curl --request GET \ --url 'https://api.trello.com/1/cards/{id}/stickers/{idSticker}'
Responses
Success
A schema has not been defined for this response code.
Update a Sticker on a Card
PUT /1/cards/{id}/stickers/{idSticker}
Update a sticker on a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the sticker
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
number
The top position of the sticker, from -60 to 100
Minimum : -60
, Maximum : 100
, Format : float
number
The left position of the sticker, from -60 to 100
Minimum : -60
, Maximum : 100
, Format : float
integer
The z-index of the sticker
number
The rotation of the sticker
Default : 0
, Minimum : 0
, Maximum : 360
, Format : float
Example
1 2
curl --request PUT \ --url 'https://api.trello.com/1/cards/{id}/stickers/{idSticker}?top={top}&left={left}&zIndex={zIndex}'
Responses
Success
A schema has not been defined for this response code.
Delete a Sticker on a Card
DELETE /1/cards/{id}/stickers/{idSticker}
Remove a sticker from the card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the sticker
Pattern : ^[0-9a-fA-F]{24}$
Example
1 2
curl --request DELETE \ --url 'https://api.trello.com/1/cards/{id}/stickers/{idSticker}'
Responses
Success
A schema has not been defined for this response code.
PUT /1/cards/{id}/actions/{idAction}/comments
Update an existing comment
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the comment action to update
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
The new text for the comment
1 2
curl --request PUT \ --url 'https://api.trello.com/1/cards/{id}/actions/{idAction}/comments?text={text}'
Success
A schema has not been defined for this response code.
DELETE /1/cards/{id}/actions/{idAction}/comments
Delete a comment
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the comment action to update
Pattern : ^[0-9a-fA-F]{24}$
1 2
curl --request DELETE \ --url 'https://api.trello.com/1/cards/{id}/actions/{idAction}/comments'
Success
A schema has not been defined for this response code.
Update Custom Field item on Card
PUT /1/cards/{idCard}/customField/{idCustomField}/item
Setting, updating, and removing the value for a Custom Field on a card. For more details on updating custom fields check out the Getting Started With Custom Fields
Request
Path parameters
string
ID of the card that the Custom Field value should be set/updated for
Pattern : ^[0-9a-fA-F]{24}$
string
ID of the Custom Field on the card.
Pattern : ^[0-9a-fA-F]{24}$
Body parameters
Example
1 2
curl --request PUT \ --url 'https://api.trello.com/1/cards/{idCard}/customField/{idCustomField}/item'
Responses
Success
A schema has not been defined for this response code.
Get Custom Field Items for a Card
GET /1/cards/{id}/customFieldItems
Get the custom field items for a card.
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Example
1 2 3
curl --request GET \ --url 'https://api.trello.com/1/cards/{id}/customFieldItems' \ --header 'Accept: application/json'
Responses
POST /1/cards/{id}/actions/comments
Add a new comment to a card
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
The comment
1 2 3
curl --request POST \ --url 'https://api.trello.com/1/cards/{id}/actions/comments?text={text}' \ --header 'Accept: application/json'
Success
Content type | Value |
---|---|
application/json | Action |
Add a Label to a Card
POST /1/cards/{id}/idLabels
Add a label to a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
The ID of the label to add
Pattern : ^[0-9a-fA-F]{24}$
Example
1 2
curl --request POST \ --url 'https://api.trello.com/1/cards/{id}/idLabels'
Responses
Success
A schema has not been defined for this response code.
Add a Member to a Card
POST /1/cards/{id}/idMembers
Add a member to a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
The ID of the Member to add to the card
Pattern : ^[0-9a-fA-F]{24}$
Example
1 2
curl --request POST \ --url 'https://api.trello.com/1/cards/{id}/idMembers'
Responses
Success
A schema has not been defined for this response code.
Create a new Label on a Card
POST /1/cards/{id}/labels
Create a new label for the board and add it to the given card.
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
string
A valid label color or null
. See labels
string
A name for the label
Example
1 2
curl --request POST \ --url 'https://api.trello.com/1/cards/{id}/labels?color={color}'
Responses
Success
A schema has not been defined for this response code.
Mark a Card's Notifications as read
POST /1/cards/{id}/markAssociatedNotificationsRead
Mark notifications about this card as read
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
Example
1 2
curl --request POST \ --url 'https://api.trello.com/1/cards/{id}/markAssociatedNotificationsRead'
Responses
Success
A schema has not been defined for this response code.
Remove a Label from a Card
DELETE /1/cards/{id}/idLabels/{idLabel}
Remove a label from a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the label to remove
Pattern : ^[0-9a-fA-F]{24}$
Example
1 2
curl --request DELETE \ --url 'https://api.trello.com/1/cards/{id}/idLabels/{idLabel}'
Responses
Success
A schema has not been defined for this response code.
Remove a Member from a Card
DELETE /1/cards/{id}/idMembers/{idMember}
Remove a member from a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the member to remove from the card
Pattern : ^[0-9a-fA-F]{24}$
Example
1 2
curl --request DELETE \ --url 'https://api.trello.com/1/cards/{id}/idMembers/{idMember}'
Responses
Success
A schema has not been defined for this response code.
Remove a Member's Vote on a Card
DELETE /1/cards/{id}/membersVoted/{idMember}
Remove a member's vote from a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the member whose vote to remove
Pattern : ^[0-9a-fA-F]{24}$
Example
1 2
curl --request DELETE \ --url 'https://api.trello.com/1/cards/{id}/membersVoted/{idMember}'
Responses
Success
A schema has not been defined for this response code.
Update Checkitem on Checklist on Card
PUT /1/cards/{idCard}/checklist/{idChecklist}/checkItem/{idCheckItem}
Update an item in a checklist on a card.
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the checklist item to update
Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the item to update.
Pattern : ^[0-9a-fA-F]{24}$
Query parameters
oneOf [ string , number ]
top
, bottom
, or a positive float
Example
1 2 3
curl --request PUT \ --url 'https://api.trello.com/1/cards/{idCard}/checklist/{idChecklist}/checkItem/{idCheckItem}' \ --header 'Accept: application/json'
Responses
Success
Content type | Value |
---|---|
application/json | CheckItem |
Delete a Checklist on a Card
DELETE /1/cards/{id}/checklists/{idChecklist}
Delete a checklist from a card
Request
Path parameters
string
The ID of the Card
Pattern : ^[0-9a-fA-F]{24}$
string
The ID of the checklist to delete
Pattern : ^[0-9a-fA-F]{24}$
Example
1 2
curl --request DELETE \ --url 'https://api.trello.com/1/cards/{id}/checklists/{idChecklist}'
Responses
Success
A schema has not been defined for this response code.
how to delete a list in trello
Source: https://developer.atlassian.com/cloud/trello/rest/api-group-cards/
Posted by: beckvauddeas.blogspot.com
0 Response to "how to delete a list in trello"
Post a Comment