URL Signing Keys
Delete Signing Key
curl -X DELETE "https://api.videograph.ai/video/services/api/v1/signing-keys/example_string" \
-H "Content-Type: application/json" \
-H "Accept: example_string" \
-H "Authorization: Basic YOUR_CREDENTIALS"
import requests
import json
url = "https://api.videograph.ai/video/services/api/v1/signing-keys/example_string"
headers = {
"Content-Type": "application/json",
"Accept": "example_string",
"Authorization": "Basic YOUR_CREDENTIALS"
}
response = requests.delete(url, headers=headers)
print(response.json())
const response = await fetch("https://api.videograph.ai/video/services/api/v1/signing-keys/example_string", {
method: "DELETE",
headers: {
"Content-Type": "application/json",
"Accept": "example_string",
"Authorization": "Basic YOUR_CREDENTIALS"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
"bytes"
)
func main() {
req, err := http.NewRequest("DELETE", "https://api.videograph.ai/video/services/api/v1/signing-keys/example_string", nil)
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Accept", "example_string")
req.Header.Set("Authorization", "Basic YOUR_CREDENTIALS")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://api.videograph.ai/video/services/api/v1/signing-keys/example_string')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(uri)
request['Content-Type'] = 'application/json'
request['Accept'] = 'example_string'
request['Authorization'] = 'Basic YOUR_CREDENTIALS'
response = http.request(request)
puts response.body
{
"status": "Success",
"message": "Deleted signing key successfully.",
"code": 200
}
DELETE
/video/services/api/v1/signing-keys/{SIGNING_KEY_ID}DELETE
Security Scheme
Basic Authentication
Usernamestring
RequiredUsername for basic authentication
Passwordpassword
RequiredPassword for basic authentication
path
SIGNING_KEY_IDstring
RequiredSigning Key UUID
Request Preview
Response
Response will appear here after sending the request
Authentication
basicAuth
header
Authorizationstring
RequiredBasic authentication credentials. Provide username and password encoded in Base64 format: Basic base64(username:password)
Path Parameters
SIGNING_KEY_IDstring
RequiredSigning Key UUID
Headers
Responses
OK
Was this page helpful?
Built with Documentation.AI
Last updated 2 weeks ago

