curl --request DELETE \
--url https://api.upsolve.ai/v2/api/applications/{applicationId}/dashboards/{dashboardId}/charts/{chartId} \
--header 'authorization: <api-key>'import requests
url = "https://api.upsolve.ai/v2/api/applications/{applicationId}/dashboards/{dashboardId}/charts/{chartId}"
headers = {"authorization": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {authorization: '<api-key>'}};
fetch('https://api.upsolve.ai/v2/api/applications/{applicationId}/dashboards/{dashboardId}/charts/{chartId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.upsolve.ai/v2/api/applications/{applicationId}/dashboards/{dashboardId}/charts/{chartId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.upsolve.ai/v2/api/applications/{applicationId}/dashboards/{dashboardId}/charts/{chartId}"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.upsolve.ai/v2/api/applications/{applicationId}/dashboards/{dashboardId}/charts/{chartId}")
.header("authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.upsolve.ai/v2/api/applications/{applicationId}/dashboards/{dashboardId}/charts/{chartId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": "success",
"data": {
"dashboardId": "<string>",
"removedChartId": "<string>"
}
}{
"status": "error",
"error": {
"message": "<string>",
"code": "<string>",
"details": {}
}
}Remove Chart from Dashboard
Removes one chart from a dashboard’s layout — the v2 replacement for POST /v1/api/dashboard/remove-charts (call once per chart). Authenticate with an Upsolve API key or a project-user token (from /v1/api/projects/user-token, or /v1/api/tenant/register-tenant after migration).
curl --request DELETE \
--url https://api.upsolve.ai/v2/api/applications/{applicationId}/dashboards/{dashboardId}/charts/{chartId} \
--header 'authorization: <api-key>'import requests
url = "https://api.upsolve.ai/v2/api/applications/{applicationId}/dashboards/{dashboardId}/charts/{chartId}"
headers = {"authorization": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {authorization: '<api-key>'}};
fetch('https://api.upsolve.ai/v2/api/applications/{applicationId}/dashboards/{dashboardId}/charts/{chartId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.upsolve.ai/v2/api/applications/{applicationId}/dashboards/{dashboardId}/charts/{chartId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.upsolve.ai/v2/api/applications/{applicationId}/dashboards/{dashboardId}/charts/{chartId}"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.upsolve.ai/v2/api/applications/{applicationId}/dashboards/{dashboardId}/charts/{chartId}")
.header("authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.upsolve.ai/v2/api/applications/{applicationId}/dashboards/{dashboardId}/charts/{chartId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": "success",
"data": {
"dashboardId": "<string>",
"removedChartId": "<string>"
}
}{
"status": "error",
"error": {
"message": "<string>",
"code": "<string>",
"details": {}
}
}Authorizations
Path Parameters
ID of the application. List them with GET /v2/api/applications. After a v1 migration, each v1 workspace became one application — legacyWorkspaceId on the list says which.
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$ID of the dashboard to remove the chart from
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$ID of the chart on the dashboard (a key of the dashboard's charts, e.g. an ID returned by the add-charts endpoint)
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$Query Parameters
Upsolve API key, generated under Account → Developer settings in the Upsolve Hub. Keys are user-scoped: pass organizationId alongside the key to select which org to act on.
1The ID of the organization. Required when using Supabase JWT authentication.
The ID of the connection a guest has access to
Was this page helpful?