How do I find the LIST ID in trello?
There are two ways I'd suggest! First, if you're looking for the list ID for a specific card, you can export the JSON for that card and find the list ID in the idList property. For example:
"idList": "{id}",
You can export the JSON for card if you:
If you want list IDs for all the lists in a specific board, I'd suggest the /boards API endpoint. Here's more detail on that:
https://developer.atlassian.com/cloud/trello/rest/api-group-boards/#api-boards-id-lists-get
You'll find the list ID in the id property in those responses.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.