Cancel task currently being executed by the API
August 8, 2024
Table of contents
https://api.useapi.net/v1/runwayml/scheduler/
taskId
Request Headers
Authorization: Bearer {API token}
API token
is required, see Setup useapi.net for details.
Path parameter
taskId
is required. Specify taskId you want to cancel.
Responses
-
{ "error": "<Error message>", "code": 400 }
-
{ "error": "Unauthorized", "code": 401 }
-
{ "error": "Unable to locate running taskId <taskId>" }
Model
{ // TypeScript, all fields are optional
error: string
code: number
}
Examples
-
curl -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer …" \ -X DELETE "https://api.useapi.net/v1/runwayml/scheduler/taskId"
-
const taskId = "taskId to cancel"; const apiUrl = `https://api.useapi.net/v1/runwayml/scheduler/${taskId}`; const token = "API token"; const data = { method: 'DELETE', headers: { 'Authorization': `Bearer ${token}`, 'Content-Type': 'application/json' } }; const response = await fetch(apiUrl, data); const result = await response.json(); console.log("response", {response, result});
-
import requests taskId = "taskId to cancel" apiUrl = f"https://api.useapi.net/v1/runwayml/scheduler/{taskId}" token = "API token" headers = { "Content-Type": "application/json", "Authorization" : f"Bearer {token}" } response = requests.delete(apiUrl, headers=headers) print(response, response.json())