Skip to main content
DELETE
/
v1
/
api
/
*
Proxy Dashboard API (DELETE)
curl --request DELETE \
  --url 'https://api.mindfort.app/v1/api/*' \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.mindfort.app/v1/api/*"

headers = {"Authorization": "Bearer <token>"}

response = requests.delete(url, headers=headers)

print(response.text)
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.mindfort.app/v1/api/*', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.mindfort.app/v1/api/*"

req, _ := http.NewRequest("DELETE", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
{}
{
"error": "<string>",
"request_id": "<string>"
}
{
"error": "<string>",
"request_id": "<string>"
}
{
"error": "<string>",
"request_id": "<string>"
}
{
"error": "<string>",
"request_id": "<string>"
}

Authorizations

Authorization
string
header
required

API key generated from the MindFort dashboard. Pass as Authorization: Bearer <your-api-key>.

Path Parameters

path
string
required

Remainder of the dashboard API path after /v1/api

Response

Upstream dashboard API response

The response is of type object.