POSIUM

List cases in a suite

Returns a paginated list of test cases in a suite

GET
/suites/{suiteId}/cases
/suites/{suiteId}/cases

The Authorization access token

Authorization

x-api-key<token>

In: header

Query Parameters

pageinteger

Default: 1

limitinteger

Default: 20

Path Parameters

suiteId
Required
string

curl -X GET "https://api.posium.ai/suites/string/cases?page=1&limit=20" \
  -H "x-api-key: <token>"

List of cases

{
  "items": [
    {
      "id": "string",
      "suite_id": "string",
      "name": "string",
      "description": "string",
      "steps": [
        "string"
      ],
      "expected_result": "string",
      "created_at": "2019-08-24T14:15:22Z",
      "updated_at": "2019-08-24T14:15:22Z"
    }
  ],
  "total": 0
}