Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
The media type of the request body. Should be set to application/json
Example:
"application/json"
Bearer token for API authentication
Example:
"Bearer your-api-token"
Path Parameters
The ID of the project
Body
application/json
The short ID of the test plan to run
Example:
"abc123"
Human readable name of what triggered this test, can be the name of the CI/CD tool. Defaults to 'API' if not provided.
Example:
"CircleCI"
Optional application environment overrides
Example:
{
"app-short-id-1": {
"environment": {
"url": "https://preview-123-frontend.vercel.app",
"name": "PR-123-Frontend"
}
},
"app-short-id-2": {
"environment": {
"url": "https://preview-123-backend.vercel.app",
"name": "PR-123-Backend"
}
}
}