Actions
Manage test actions (rules) that automatically modify test behavior.
Actions allow you to:
Skip tests that match certain conditions
Quarantine flaky tests so their failures don't fail the run
Tag tests with custom labels for organization
Each action has a matcher that defines which tests it applies to, based on conditions like test title, file path, tags, git branch, etc.
Get all actions for a project with optional filtering
API key authentication using Bearer token
The project ID
proj_abc123Search actions by name
flaky testSuccessful response
Invalid request parameters
Authentication failed
Resource not found
Create a new action for a project
API key authentication using Bearer token
The project ID
proj_abc123Action created successfully
Invalid request parameters
Authentication failed
Resource not found
Get a single action by ID. The actionId is globally unique, so projectId is not required.
API key authentication using Bearer token
The action ID
507f1f77bcf86cd799439011Successful response
Invalid request parameters
Authentication failed
Resource not found
Update an existing action. The actionId is globally unique, so projectId is not required.
API key authentication using Bearer token
The action ID
507f1f77bcf86cd799439011Action updated successfully
Invalid request parameters
Authentication failed
Resource not found
Archive an action (soft delete). The actionId is globally unique, so projectId is not required.
API key authentication using Bearer token
The action ID
507f1f77bcf86cd799439011Action archived successfully
Invalid request parameters
Authentication failed
Resource not found
Enable a disabled action. The actionId is globally unique, so projectId is not required.
API key authentication using Bearer token
The action ID
507f1f77bcf86cd799439011Action enabled successfully
Invalid request parameters
Authentication failed
Resource not found
Disable an active action. The actionId is globally unique, so projectId is not required.
API key authentication using Bearer token
The action ID
507f1f77bcf86cd799439011Action disabled successfully
Invalid request parameters
Authentication failed
Resource not found
Last updated
Was this helpful?