POSIUM

List suites in a project

Returns a paginated list of test suites in a project

GET
/projects/{projectId}/suites
/projects/{projectId}/suites

The Authorization access token

Authorization

x-api-key<token>

In: header

Query Parameters

pageinteger

Default: 1

limitinteger

Default: 20

Path Parameters

projectId
Required
string

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

List of suites

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