Skip to content

Create a suite

POST
/v1/suites
curl --request POST \
--url https://beta-api.plune.ai/v1/suites \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "name": "Checkout", "parentId": "example", "kind": "folder", "position": 1, "description": "example" }'
Media type application/json
object
name
required
string
Example
Checkout
parentId

Must be an existing FOLDER in your project — a suite holds cases, not suites (400 otherwise).

string
kind
string
default: suite
Allowed values: folder suite
position

The slot among the siblings; omitted = after the last one. Anything past the end is the end.

integer
description

Up to 16 384 bytes of UTF-8.

string

Created

Media type application/json

A node of the tree as stored: the authoring core plus server-owned scoping metadata. The tree is a filesystem (B-7): a folder holds folders and suites, a suite holds test cases.

object
schemaVersion
required
integer
Allowed values: 1
id
required
string format: uuid
name
required
string
parentId

Absent on a root node. Always a folder.

string
projectId
required
string
kind
required
string
Allowed values: folder suite
position
required

Order among siblings — dense and 0-based; every write that places a node renumbers them.

integer
description

Free text, up to 16 384 bytes of UTF-8. Absent when empty.

string
file

The spec path this suite was filed from (an automated case’s specRef, normalised). Set by filing alone and never by hand; absent on nodes a person made.

string
createdAt
required
string format: date-time
updatedAt
required
string format: date-time
Example
{
"schemaVersion": 1,
"name": "Checkout",
"kind": "folder",
"file": "apps/web/e2e/catalog/search.spec.ts"
}

Invalid body, or a parent that is missing / not yours / a suite rather than a folder

Media type application/json
object
error
required
string
Example generated
{
"error": "example"
}

No / invalid token or session

Rate-limited: either the per-route throttle or a tenant quota. Retry-After carries the seconds until the window rolls over.

Media type application/json
object
error
required
string
Example generated
{
"error": "example"
}
Retry-After
integer

Seconds until the window rolls over