Fetch list of all sessions
To fetch list of sessions. You can also limit the number of records, and paginate through your data using Parameters.
Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Query Parameters
To filter sessions of specific build.
To filter sessions of specific user.
To filter sessions of specific test name.
It defines the number of lists on the basis of limit parameter. e.g offset=10
To fetch specified number of records. e.g. limit=10
To fetch the list of sessions with specific statuses. You can pass multiple comma seperated statuses e.g. running,queued,completed,passed,failed,timeout,error and lambda-error.
To fetch the list of sessions that executed from the specified Start Date. The Date format must be YYYY-MM-DD. e.g. "2018-03-15".
To fetch the list of sessions that executed till the specified End Date. If both fromdate and todate value provided then it works as range filter. The Date format must be YYYY-MM-DD. e.g. "2018-03-15".
To sort the list in ascending or descending order using multiple keys. e.g. "asc.user_id,desc.duration"
To filter basis on test tags. e.g. "testTag1,testTag2,testTag3"
Response
application/jsonsuccessful operation