POSIUM

Update a suite

Updates an existing test suite

PUT
/suites/{suiteId}
/suites/{suiteId}

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

suiteId
Required
string

curl -X PUT "https://api.posium.ai/suites/string" \
  -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 updated

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