POSIUM

Create a new suite

Creates a new test suite in a project

POST
/projects/{projectId}/suites
/projects/{projectId}/suites

The Authorization access token

Authorization

x-api-key<token>

In: header

Request Body

application/jsonRequired

idstring

Unique identifier for the test suite

project_id
Required
string

ID of the project this suite belongs to

name
Required
string

Name of the test suite

descriptionstring

Description of the test suite

created_atstring

Format: "date-time"

updated_atstring

Format: "date-time"

Path Parameters

projectId
Required
string

curl -X POST "https://api.posium.ai/projects/string/suites" \
  -H "x-api-key: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "id": "string",
    "project_id": "string",
    "name": "string",
    "description": "string",
    "created_at": "2019-08-24T14:15:22Z",
    "updated_at": "2019-08-24T14:15:22Z"
  }'

Suite created

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