Delete API Key
This endpoint provides the functionality to delete a specific API key. Users can use this endpoint to revoke access for a particular API key that they no longer wish to use.
Endpoint: https://api.amlwatcher.com/api/api-key
Method: DELETE
- HTTP
- Javascript
- PHP
- Python
- Ruby
- Java
- cURL
- C#
- Go
Sample Request
DELETE /api/api-key HTTP/1.1
Host: api.amlwatcher.com
Authorization: Bearer Token
Content-Type: application/json
Content-Length: 88
{
"api_key": "your-api-key"
}
Sample Request
const myHeaders = new Headers();
myHeaders.append("Authorization", "Bearer Token");
myHeaders.append("Content-Type", "application/json");
const payload = JSON.stringify({
api_key: "",
});
const requestOptions = {
method: "DELETE",
headers: myHeaders,
body: payload, // Use the JSON payload here
redirect: "follow",
};
fetch("https://api.amlwatcher.com/api/api-key", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.log("error", error));
Sample Request
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.amlwatcher.com/api/api-key',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'DELETE',
CURLOPT_POSTFIELDS => array('api_key' => ''),
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer Token'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Sample Request
import requests
import json
url = "https://api.amlwatcher.com/api/api-key"
payload = json.dumps({
'api_key': ''
})
headers = {
'Authorization': 'Bearer Token',
'Content-Type': 'application/json'
}
response = requests.request("DELETE", url, headers=headers, data=payload)
print(response.text)
Sample Request
require "uri"
require "net/http"
require "json"
url = URI("https://api.amlwatcher.com/api/api-key")
https = Net::HTTP.new(url.host, url.port)
https.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["Authorization"] = "Bearer Token"
request["Content-Type"] = "application/json"
payload = { api_key: 'YOUR-API-KEY' }.to_json
request.body = payload
response = https.request(request)
puts response.read_body
Sample Request
import java.io.DataOutputStream;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.URL;
public class Main {
public static void main(String[] args) {
HttpURLConnection connection = null;
DataOutputStream outputStream = null;
BufferedReader in = null;
try {
// Define the URL
URL url = new URL("https://api.amlwatcher.com/api/api-key");
// Open a connection to the URL
connection = (HttpURLConnection) url.openConnection();
// Set the request method to DELETE
connection.setRequestMethod("DELETE");
// Set the request headers
connection.setRequestProperty("Authorization", "Bearer Token");
connection.setRequestProperty("Content-Type", "multipart/form-data; boundary=boundary");
// Enable input/output streams
connection.setDoOutput(true);
// Define the multipart form-data
String boundary = "boundary";
String lineEnd = "\r\n";
String twoHyphens = "--";
String requestBody = twoHyphens + boundary + lineEnd +
"Content-Disposition: form-data; name=\"api_key\"" + lineEnd + lineEnd +
"Your API KEY" + lineEnd +
twoHyphens + boundary + twoHyphens + lineEnd;
// Write the multipart form-data request body
outputStream = new DataOutputStream(connection.getOutputStream());
outputStream.writeBytes(requestBody);
outputStream.flush();
// Get the response code
int responseCode = connection.getResponseCode();
System.out.println("Response Code: " + responseCode);
// Read the response
in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
StringBuilder response = new StringBuilder();
String inputLine;
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
// Print the response
System.out.println("Response Body: " + response.toString());
} catch (IOException e) {
e.printStackTrace();
// Print the error response if available
if (connection != null) {
try (BufferedReader errorReader = new BufferedReader(new InputStreamReader(connection.getErrorStream()))) {
StringBuilder errorResponse = new StringBuilder();
String errorLine;
while ((errorLine = errorReader.readLine()) != null) {
errorResponse.append(errorLine);
}
System.out.println("Error Response: " + errorResponse.toString());
} catch (IOException ignored) {
}
}
} finally {
// Close resources
try {
if (outputStream != null) outputStream.close();
if (in != null) in.close();
} catch (IOException ignored) {
}
}
}
}
Sample Request
curl --location --request DELETE 'https://api.amlwatcher.com/api/api-key'
--header 'Authorization: Bearer Token'
--header 'Content-Type: application/json'
--data-raw '{
"api_key": ""
}'
Sample Request
using System;
using System.Threading.Tasks;
using RestSharp;
public class Program
{
public static async Task Main(string[] args)
{
var options = new RestClientOptions("https://api.amlwatcher.com")
{
Timeout = TimeSpan.FromSeconds(30)
};
var client = new RestClient(options);
var request = new RestRequest("/api/api-key", Method.Delete);
request.AddHeader("Authorization", "Bearer Token");
request.AddHeader("Content-Type", "application/json");
var requestBody = new
{
api_key = "YPUR_GENERATED_API_KEY"
};
request.AddJsonBody(requestBody);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
if (response.IsSuccessful)
{
Console.WriteLine("Request successful");
}
else
{
Console.WriteLine($"Error: {response.StatusCode} - {response.StatusDescription}");
Console.WriteLine(response.Content);
}
}
}
Sample Request
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
func main() {
url := "https://api.amlwatcher.com/api/api-key"
method := "DELETE"
payload := map[string]string{
"api_key": "Your API KEY",
}
payloadBytes, err := json.Marshal(payload)
if err != nil {
fmt.Println(err)
return
}
client := &http.Client{}
req, err := http.NewRequest(method, url, bytes.NewBuffer(payloadBytes))
if err != nil {
fmt.Println(err)
return
}
req.Header.Set("Authorization", "Bearer Token")
req.Header.Set("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
Request
Parameters | Required | Type | Description |
---|---|---|---|
api_key | Yes | String | The api_key represents the existing API key that a user wants to delete. |
Response
Parameters | Description |
---|---|
error | Whenever there is an error in your request, this param will have details of that error; otherwise it’ll remain empty. |
status | The status field is set to either “SUCCESS” or “FAIL”, indicating that the API request resulted in a successful or failure/error condition respectively. |
data | An array containing the actual response elements. |
Sample Response
{
"error": false,
"status": "SUCCESS",
"data": {
"message": "Api key successfully removed"
}
}