Skip to main content

GET /rows

Description

Retrieves data for all rows and returns a JSON object containing an array of row (swimlane) data objects.

This route responds to HTTP GET requests sent to the /rows endpoint.

Payload

No payload needs to be sent with the request.

Response

The response is a JSON object that includes an array of row data objects.

Example:

[
{
"id": 1,
"label": "Feature",
"collapsed": false
},
{
"id": 2,
"label": "Task",
"collapsed": false
}
]

For another example of the returned object, see rows.

The HTTP status code indicates if the request was successful (response.status == 200) or encountered an error (response.status == 500).


Related articles: