Skip to content
Testsigma DOCS

Delete a scheduled test plan

DELETE/schedule_executions/{scheduleId}

Base URL  https://app.testsigma.com/api/v1

Delete an existing test plan schedule using the REST API.

Authenticate with your API key as a Bearer token in the Authorization header. Generate a key →
scheduleIdThe ID of the required schedule of the selected plan. The DELETE method removes the respective schedule and returns status code 202.
REQUEST
curl -X DELETE \
  'https://app.testsigma.com/api/v1/schedule_executions/{scheduleId}' \
  -H 'Authorization: Bearer <API_KEY>' \
  -H 'Content-Type: application/json'
const response = await fetch('https://app.testsigma.com/api/v1/schedule_executions/{scheduleId}', {
  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/schedule_executions/{scheduleId}',
  headers={
    'Authorization': 'Bearer <API_KEY>',
    'Content-Type': 'application/json'
  }
)
data = response.json()
RESPONSE200OK