Rate this page:
GET /1/lists/{id}
Get information about a List
string
The ID of the list
string
The API key to use
^[0-9a-fA-F]{32}$
string
The API token to use
^[0-9a-fA-F]{64}$
string
all
or a comma separated list of List field names.
form
, Default: name,closed,idBoard,pos
1 2
curl --request GET \
--url 'https://api.trello.com/1/lists/{id}?key=0471642aefef5fa1fa76530ce1ba4c85&token=9eb76d9a9d02b8dd40c2f3e5df18556c831d4d1fadbe2c45f8310e6c93b5c548'
Success
A schema has not been defined for this response code.
PUT /1/lists/{id}
Update the properties of a List
string
The ID of the list
string
The API key to use
^[0-9a-fA-F]{32}$
string
The API token to use
^[0-9a-fA-F]{64}$
string
New name for the list
boolean
Whether the list should be closed (archived)
string
ID of a board the list should be moved to
form
, Pattern: ^[0-9a-fA-F]{32}$
oneOf [number, string]
New position for the list: top
, bottom
, or a positive floating point number
boolean
Whether the active member is subscribed to this list
1 2
curl --request PUT \
--url 'https://api.trello.com/1/lists/{id}?key=0471642aefef5fa1fa76530ce1ba4c85&token=9eb76d9a9d02b8dd40c2f3e5df18556c831d4d1fadbe2c45f8310e6c93b5c548'
Success
A schema has not been defined for this response code.
POST /1/lists
Create a new List on a Board
string
The API key to use
^[0-9a-fA-F]{32}$
string
The API token to use
^[0-9a-fA-F]{64}$
string
Name for the list
string
The long ID of the board the list should be created on
^[0-9a-fA-F]{32}$
string
ID of the List to copy into the new List
^[0-9a-fA-F]{32}$
oneOf [number, string]
Position of the list. top
, bottom
, or a positive floating point number
1 2
curl --request POST \
--url 'https://api.trello.com/1/lists?key=0471642aefef5fa1fa76530ce1ba4c85&token=9eb76d9a9d02b8dd40c2f3e5df18556c831d4d1fadbe2c45f8310e6c93b5c548&name={name}&idBoard=5abbe4b7ddc1b351ef961414'
Success
A schema has not been defined for this response code.
POST /1/lists/{id}/archiveAllCards
Archive all cards in a list
string
The ID of the list
^[0-9a-fA-F]{32}$
string
The API key to use
^[0-9a-fA-F]{32}$
string
The API token to use
^[0-9a-fA-F]{64}$
1 2
curl --request POST \
--url 'https://api.trello.com/1/lists/{id}/archiveAllCards?key=0471642aefef5fa1fa76530ce1ba4c85&token=9eb76d9a9d02b8dd40c2f3e5df18556c831d4d1fadbe2c45f8310e6c93b5c548'
Success
A schema has not been defined for this response code.
POST /1/lists/{id}/moveAllCards
Move all Cards in a List
string
The ID of the list
^[0-9a-fA-F]{32}$
string
The API key to use
^[0-9a-fA-F]{32}$
string
The API token to use
^[0-9a-fA-F]{64}$
string
The ID of the board the cards should be moved to
^[0-9a-fA-F]{32}$
string
The ID of the list that the cards should be moved to
^[0-9a-fA-F]{32}$
1 2
curl --request POST \
--url 'https://api.trello.com/1/lists/{id}/moveAllCards?key=0471642aefef5fa1fa76530ce1ba4c85&token=9eb76d9a9d02b8dd40c2f3e5df18556c831d4d1fadbe2c45f8310e6c93b5c548&idBoard=5abbe4b7ddc1b351ef961414&idList=5abbe4b7ddc1b351ef961414'
Success
A schema has not been defined for this response code.
PUT /1/lists/{id}/closed
Archive or unarchive a list
string
The ID of the list
^[0-9a-fA-F]{32}$
string
The API key to use
^[0-9a-fA-F]{32}$
string
The API token to use
^[0-9a-fA-F]{64}$
string
Set to true to close (archive) the list
^[0-9a-fA-F]{32}$
1 2
curl --request PUT \
--url 'https://api.trello.com/1/lists/{id}/closed?key=0471642aefef5fa1fa76530ce1ba4c85&token=9eb76d9a9d02b8dd40c2f3e5df18556c831d4d1fadbe2c45f8310e6c93b5c548'
Success
A schema has not been defined for this response code.
PUT /1/lists/{id}/idBoard
Move a List to a different Board
string
The ID of the list
^[0-9a-fA-F]{32}$
string
The API key to use
^[0-9a-fA-F]{32}$
string
The API token to use
^[0-9a-fA-F]{64}$
string
The ID of the board to move the list to
^[0-9a-fA-F]{32}$
1 2
curl --request PUT \
--url 'https://api.trello.com/1/lists/{id}/idBoard?key=0471642aefef5fa1fa76530ce1ba4c85&token=9eb76d9a9d02b8dd40c2f3e5df18556c831d4d1fadbe2c45f8310e6c93b5c548&value=5abbe4b7ddc1b351ef961414'
Success
A schema has not been defined for this response code.
PUT /1/lists/{id}/{field}
Rename a list
string
The ID of the list
^[0-9a-fA-F]{32}$
string
The field on the List to be updated
Valid values:Β name
, pos
, subscribed
string
The API key to use
^[0-9a-fA-F]{32}$
string
The API token to use
^[0-9a-fA-F]{64}$
oneOf [string, number, string, boolean]
The new value for the field
1 2
curl --request PUT \
--url 'https://api.trello.com/1/lists/{id}/{field}?key=0471642aefef5fa1fa76530ce1ba4c85&token=9eb76d9a9d02b8dd40c2f3e5df18556c831d4d1fadbe2c45f8310e6c93b5c548'
Success
A schema has not been defined for this response code.
GET /1/lists/{id}/actions
Get the Actions on a List
string
The ID of the list
string
The API key to use
^[0-9a-fA-F]{32}$
string
The API token to use
^[0-9a-fA-F]{64}$
string
A comma-separated list of action types.
1 2
curl --request GET \
--url 'https://api.trello.com/1/lists/{id}/actions?key=0471642aefef5fa1fa76530ce1ba4c85&token=9eb76d9a9d02b8dd40c2f3e5df18556c831d4d1fadbe2c45f8310e6c93b5c548'
Success
A schema has not been defined for this response code.
GET /1/lists/{id}/board
Get the board a list is on
string
The ID of the list
string
The API key to use
^[0-9a-fA-F]{32}$
string
The API token to use
^[0-9a-fA-F]{64}$
string
all
or a comma-separated list of board fields
all
1 2
curl --request GET \
--url 'https://api.trello.com/1/lists/{id}/board?key=0471642aefef5fa1fa76530ce1ba4c85&token=9eb76d9a9d02b8dd40c2f3e5df18556c831d4d1fadbe2c45f8310e6c93b5c548'
Success
A schema has not been defined for this response code.
GET /1/lists/{id}/cards
List the cards in a list
string
The ID of the list
^[0-9a-fA-F]{32}$
string
The API key to use
^[0-9a-fA-F]{32}$
string
The API token to use
^[0-9a-fA-F]{64}$
1 2
curl --request GET \
--url 'https://api.trello.com/1/lists/{id}/cards?key=0471642aefef5fa1fa76530ce1ba4c85&token=9eb76d9a9d02b8dd40c2f3e5df18556c831d4d1fadbe2c45f8310e6c93b5c548'
Success
A schema has not been defined for this response code.
Rate this page: