Cancel job_id currently being executed by the API

February 17, 2025

Table of contents

  1. Request Headers
  2. Path parameter
  3. Responses
  4. Model
  5. Examples
  6. Try It

https://api.useapi.net/v1/riffusion/scheduler/job_id

Request Headers
Authorization: Bearer {API token}
Path parameter
  • job_id is required. Specify job_id you want to cancel.
Responses
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/riffusion/scheduler/<job_id>" 
    
  • const job_id = "job_id to cancel"; 
    const apiUrl = `https://api.useapi.net/v1/riffusion/scheduler/${job_id}`; 
    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
    job_id = "job_id to cancel" 
    apiUrl = f"https://api.useapi.net/v1/riffusion/scheduler/{job_id}" 
    token = "API token"
    headers = {
        "Content-Type": "application/json", 
        "Authorization" : f"Bearer {token}"
    }
    response = requests.delete(apiUrl, headers=headers)
    print(response, response.json())
    
Try It