Add charts to a dashboard
curl --request POST \
--url https://api.upsolve.ai/v1/api/dashboard/add-charts \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '
{
"targetDashboardId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"charts": [
{
"chartId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"chartVersion": 123
}
],
"apiKey": "<string>",
"organizationId": "<string>",
"connectionId": "<string>"
}
'import requests
url = "https://api.upsolve.ai/v1/api/dashboard/add-charts"
payload = {
"targetDashboardId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"charts": [
{
"chartId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"chartVersion": 123
}
],
"apiKey": "<string>",
"organizationId": "<string>",
"connectionId": "<string>"
}
headers = {
"authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
targetDashboardId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
charts: [{chartId: '3c90c3cc-0d44-4b50-8888-8dd25736052a', chartVersion: 123}],
apiKey: '<string>',
organizationId: '<string>',
connectionId: '<string>'
})
};
fetch('https://api.upsolve.ai/v1/api/dashboard/add-charts', 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/v1/api/dashboard/add-charts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'targetDashboardId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'charts' => [
[
'chartId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'chartVersion' => 123
]
],
'apiKey' => '<string>',
'organizationId' => '<string>',
'connectionId' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.upsolve.ai/v1/api/dashboard/add-charts"
payload := strings.NewReader("{\n \"targetDashboardId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"charts\": [\n {\n \"chartId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"chartVersion\": 123\n }\n ],\n \"apiKey\": \"<string>\",\n \"organizationId\": \"<string>\",\n \"connectionId\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.upsolve.ai/v1/api/dashboard/add-charts")
.header("authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"targetDashboardId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"charts\": [\n {\n \"chartId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"chartVersion\": 123\n }\n ],\n \"apiKey\": \"<string>\",\n \"organizationId\": \"<string>\",\n \"connectionId\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.upsolve.ai/v1/api/dashboard/add-charts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"targetDashboardId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"charts\": [\n {\n \"chartId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"chartVersion\": 123\n }\n ],\n \"apiKey\": \"<string>\",\n \"organizationId\": \"<string>\",\n \"connectionId\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": "<string>",
"data": {
"message": "<string>",
"addedChartIds": [
"<string>"
],
"dashboardId": "<string>"
}
}{
"status": "<string>",
"error": {
"message": "<string>",
"code": "<string>",
"details": {}
}
}Dashboard Management
Add Charts to Dashboard
Deep-copies one or more charts into a target dashboard. Each source chart is duplicated (new ID) and appended to the bottom of the dashboard layout. Authenticate with a tenant JWT or an API key.
POST
/
v1
/
api
/
dashboard
/
add-charts
Add charts to a dashboard
curl --request POST \
--url https://api.upsolve.ai/v1/api/dashboard/add-charts \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '
{
"targetDashboardId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"charts": [
{
"chartId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"chartVersion": 123
}
],
"apiKey": "<string>",
"organizationId": "<string>",
"connectionId": "<string>"
}
'import requests
url = "https://api.upsolve.ai/v1/api/dashboard/add-charts"
payload = {
"targetDashboardId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"charts": [
{
"chartId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"chartVersion": 123
}
],
"apiKey": "<string>",
"organizationId": "<string>",
"connectionId": "<string>"
}
headers = {
"authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
targetDashboardId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
charts: [{chartId: '3c90c3cc-0d44-4b50-8888-8dd25736052a', chartVersion: 123}],
apiKey: '<string>',
organizationId: '<string>',
connectionId: '<string>'
})
};
fetch('https://api.upsolve.ai/v1/api/dashboard/add-charts', 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/v1/api/dashboard/add-charts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'targetDashboardId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'charts' => [
[
'chartId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'chartVersion' => 123
]
],
'apiKey' => '<string>',
'organizationId' => '<string>',
'connectionId' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.upsolve.ai/v1/api/dashboard/add-charts"
payload := strings.NewReader("{\n \"targetDashboardId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"charts\": [\n {\n \"chartId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"chartVersion\": 123\n }\n ],\n \"apiKey\": \"<string>\",\n \"organizationId\": \"<string>\",\n \"connectionId\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.upsolve.ai/v1/api/dashboard/add-charts")
.header("authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"targetDashboardId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"charts\": [\n {\n \"chartId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"chartVersion\": 123\n }\n ],\n \"apiKey\": \"<string>\",\n \"organizationId\": \"<string>\",\n \"connectionId\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.upsolve.ai/v1/api/dashboard/add-charts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"targetDashboardId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"charts\": [\n {\n \"chartId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"chartVersion\": 123\n }\n ],\n \"apiKey\": \"<string>\",\n \"organizationId\": \"<string>\",\n \"connectionId\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": "<string>",
"data": {
"message": "<string>",
"addedChartIds": [
"<string>"
],
"dashboardId": "<string>"
}
}{
"status": "<string>",
"error": {
"message": "<string>",
"code": "<string>",
"details": {}
}
}Authorizations
Body
application/json
POST /v1/api/dashboard/add-charts Request body
ID of the dashboard to add charts to
Pattern:
^([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})$Charts to add to the target dashboard. Charts are deep-copied.
Minimum array length:
1Show child attributes
Show child attributes
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.
Minimum string length:
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?
⌘I