Skip to main content

GET /rows

Description

Gets data on all rows and returns a json object with an array of objects with rows (swimlanes) data

The route handles the HTTP GET request made to the /rows path.

Payload

No payload is required.

Response

The route returns a json object with an array of objects with rows data.

Example:

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

For another example of the returned object, go to rows.

The HTTP status code shows whether the request succeeds (response.status == 200) or fails (response.status == 500).


Related articles: