Delete a step group
DELETE
/projects/:project_id/step_groups/:step_group_id
Base URL
https://test-management.testsigma.com/api/v1
Permanently deletes a specific step group from a project.
Authenticate with your API key as a
Bearer token in the
Authorization header. Generate a key →PATH PARAMETERS
project_id | Unique identifier of the project the step group will be deleted from. |
step_group_id | Identifier of the step group to delete. |
RESPONSE ATTRIBUTES
message | Status message confirming the step group was deleted; may be empty. |
REQUEST
curl -X DELETE \
'https://test-management.testsigma.com/api/v1/projects/:project_id/step_groups/:step_group_id' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json'const response = await fetch('https://test-management.testsigma.com/api/v1/projects/:project_id/step_groups/:step_group_id', {
method: 'DELETE',
headers: {
'Authorization': 'Bearer <API_KEY>',
'Content-Type': 'application/json'
}
});
const data = await response.json();import requests
response = requests.delete(
'https://test-management.testsigma.com/api/v1/projects/:project_id/step_groups/:step_group_id',
headers={
'Authorization': 'Bearer <API_KEY>',
'Content-Type': 'application/json'
}
)
data = response.json()RESPONSE204No Content
{
"message": ""
}