GET /rows
Description
Retrieves data for all rows and returns a JSON object containing an array of row (swimlane) data objects.
This route processes HTTP GET requests sent to the /rows endpoint.
Payload
No payload is needed.
Response
The response includes a JSON object with an array of row data objects.
Example:
[
    {
        "id": 1,
        "label": "Feature",
        "collapsed": false
    },
    {
        "id": 2,
        "label": "Task",
        "collapsed": false
    }
]
For a different example of the returned object, see rows.
The HTTP status code indicates whether the request was successful (response.status == 200) or encountered an error (response.status == 500).
Related articles: