Delete test step
DELETE
/test_cases/:test_case_id/test_steps/:step_id
Base URL
https://app.testsigma.com/api/v1
Permanently delete a test step from a test case.
Authenticate with your API key as a
Bearer token in the
Authorization header. Generate a key →PATH PARAMETERS
test_case_id | ID of the test case that contains the step. |
step_id | ID of the step to delete. |
RESPONSE ATTRIBUTES
(empty) | Returns 204 No Content on success. No response body. |
REQUEST
curl -X DELETE \
'https://app.testsigma.com/api/v1/test_cases/:test_case_id/test_steps/:step_id' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json'const response = await fetch('https://app.testsigma.com/api/v1/test_cases/:test_case_id/test_steps/:step_id', {
method: 'DELETE',
headers: {
'Authorization': 'Bearer <API_KEY>',
'Content-Type': 'application/json'
}
});
const data = await response.json();import requests
response = requests.delete(
'https://app.testsigma.com/api/v1/test_cases/:test_case_id/test_steps/:step_id',
headers={
'Authorization': 'Bearer <API_KEY>',
'Content-Type': 'application/json'
}
)
data = response.json()RESPONSE204No Content
null