-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Low
-
Component/s: Product - API
-
None
-
1
-
Minor
Issue Summary
When a user moves and changes a list's name simultaneously using Trello's API, the list's name doesn't change when it is moved to the new board.
Steps to Reproduce
- Open an application to send API requests like Postman or SoapUI.
- Open the original board where the list is and the target board where the list should be moved to on your browser, and keep both open.
- Using the API software, send the following API request:
PUT https://api.trello.com/1/lists/{id}?key=APIKey&token=APIToken&name={listName}&idBoard={idBoard}
- The list will be moved to its target board, but its name won't be changed.
Expected Results
Moving and changing a list name simultaneously via the API should move and change the list's name.
Actual Results
Moving and changing a list name simultaneously via the API moves the list, but it doesn't change its name, maintaining its original name.
Workaround
Users can work around this issue by sending two PUT requests to move the list and change its name. This way, they'll ensure the list is moved and its name changed. These two requests must be sent separately.