Pular para o conteúdo principal
PUT
/
api
/
v2
/
dashboards
/
{id}
Atualizar dashboard
curl --request PUT \
  --url https://api.hyperdx.io/api/v2/dashboards/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Updated Dashboard Name",
  "tags": [
    "production",
    "updated"
  ],
  "tiles": [
    {
      "asRatio": false,
      "h": 3,
      "id": "65f5e4a3b9e77c001a901234",
      "name": "Updated Time Series Chart",
      "series": [
        {
          "aggFn": "count",
          "dataSource": "events",
          "groupBy": [],
          "type": "time",
          "where": "level:error"
        }
      ],
      "w": 6,
      "x": 0,
      "y": 0
    },
    {
      "asRatio": false,
      "h": 3,
      "name": "New Number Chart",
      "series": [
        {
          "aggFn": "count",
          "dataSource": "events",
          "type": "number",
          "where": "level:info"
        }
      ],
      "w": 6,
      "x": 6,
      "y": 0
    }
  ]
}
'
import requests

url = "https://api.hyperdx.io/api/v2/dashboards/{id}"

payload = {
"name": "Updated Dashboard Name",
"tags": ["production", "updated"],
"tiles": [
{
"asRatio": False,
"h": 3,
"id": "65f5e4a3b9e77c001a901234",
"name": "Updated Time Series Chart",
"series": [
{
"aggFn": "count",
"dataSource": "events",
"groupBy": [],
"type": "time",
"where": "level:error"
}
],
"w": 6,
"x": 0,
"y": 0
},
{
"asRatio": False,
"h": 3,
"name": "New Number Chart",
"series": [
{
"aggFn": "count",
"dataSource": "events",
"type": "number",
"where": "level:info"
}
],
"w": 6,
"x": 6,
"y": 0
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}

response = requests.put(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'Updated Dashboard Name',
tags: ['production', 'updated'],
tiles: [
{
asRatio: false,
h: 3,
id: '65f5e4a3b9e77c001a901234',
name: 'Updated Time Series Chart',
series: [
{
aggFn: 'count',
dataSource: 'events',
groupBy: [],
type: 'time',
where: 'level:error'
}
],
w: 6,
x: 0,
y: 0
},
{
asRatio: false,
h: 3,
name: 'New Number Chart',
series: [{aggFn: 'count', dataSource: 'events', type: 'number', where: 'level:info'}],
w: 6,
x: 6,
y: 0
}
]
})
};

fetch('https://api.hyperdx.io/api/v2/dashboards/{id}', 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.hyperdx.io/api/v2/dashboards/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'Updated Dashboard Name',
'tags' => [
'production',
'updated'
],
'tiles' => [
[
'asRatio' => false,
'h' => 3,
'id' => '65f5e4a3b9e77c001a901234',
'name' => 'Updated Time Series Chart',
'series' => [
[
'aggFn' => 'count',
'dataSource' => 'events',
'groupBy' => [

],
'type' => 'time',
'where' => 'level:error'
]
],
'w' => 6,
'x' => 0,
'y' => 0
],
[
'asRatio' => false,
'h' => 3,
'name' => 'New Number Chart',
'series' => [
[
'aggFn' => 'count',
'dataSource' => 'events',
'type' => 'number',
'where' => 'level:info'
]
],
'w' => 6,
'x' => 6,
'y' => 0
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);

$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.hyperdx.io/api/v2/dashboards/{id}"

payload := strings.NewReader("{\n \"name\": \"Updated Dashboard Name\",\n \"tags\": [\n \"production\",\n \"updated\"\n ],\n \"tiles\": [\n {\n \"asRatio\": false,\n \"h\": 3,\n \"id\": \"65f5e4a3b9e77c001a901234\",\n \"name\": \"Updated Time Series Chart\",\n \"series\": [\n {\n \"aggFn\": \"count\",\n \"dataSource\": \"events\",\n \"groupBy\": [],\n \"type\": \"time\",\n \"where\": \"level:error\"\n }\n ],\n \"w\": 6,\n \"x\": 0,\n \"y\": 0\n },\n {\n \"asRatio\": false,\n \"h\": 3,\n \"name\": \"New Number Chart\",\n \"series\": [\n {\n \"aggFn\": \"count\",\n \"dataSource\": \"events\",\n \"type\": \"number\",\n \"where\": \"level:info\"\n }\n ],\n \"w\": 6,\n \"x\": 6,\n \"y\": 0\n }\n ]\n}")

req, _ := http.NewRequest("PUT", url, payload)

req.Header.Add("Authorization", "Bearer <token>")
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.put("https://api.hyperdx.io/api/v2/dashboards/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"Updated Dashboard Name\",\n \"tags\": [\n \"production\",\n \"updated\"\n ],\n \"tiles\": [\n {\n \"asRatio\": false,\n \"h\": 3,\n \"id\": \"65f5e4a3b9e77c001a901234\",\n \"name\": \"Updated Time Series Chart\",\n \"series\": [\n {\n \"aggFn\": \"count\",\n \"dataSource\": \"events\",\n \"groupBy\": [],\n \"type\": \"time\",\n \"where\": \"level:error\"\n }\n ],\n \"w\": 6,\n \"x\": 0,\n \"y\": 0\n },\n {\n \"asRatio\": false,\n \"h\": 3,\n \"name\": \"New Number Chart\",\n \"series\": [\n {\n \"aggFn\": \"count\",\n \"dataSource\": \"events\",\n \"type\": \"number\",\n \"where\": \"level:info\"\n }\n ],\n \"w\": 6,\n \"x\": 6,\n \"y\": 0\n }\n ]\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.hyperdx.io/api/v2/dashboards/{id}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"Updated Dashboard Name\",\n \"tags\": [\n \"production\",\n \"updated\"\n ],\n \"tiles\": [\n {\n \"asRatio\": false,\n \"h\": 3,\n \"id\": \"65f5e4a3b9e77c001a901234\",\n \"name\": \"Updated Time Series Chart\",\n \"series\": [\n {\n \"aggFn\": \"count\",\n \"dataSource\": \"events\",\n \"groupBy\": [],\n \"type\": \"time\",\n \"where\": \"level:error\"\n }\n ],\n \"w\": 6,\n \"x\": 0,\n \"y\": 0\n },\n {\n \"asRatio\": false,\n \"h\": 3,\n \"name\": \"New Number Chart\",\n \"series\": [\n {\n \"aggFn\": \"count\",\n \"dataSource\": \"events\",\n \"type\": \"number\",\n \"where\": \"level:info\"\n }\n ],\n \"w\": 6,\n \"x\": 6,\n \"y\": 0\n }\n ]\n}"

response = http.request(request)
puts response.read_body
{
  "data": {
    "id": "65f5e4a3b9e77c001a567890",
    "name": "Updated Dashboard Name",
    "tags": [
      "production",
      "updated"
    ],
    "tiles": [
      {
        "asRatio": false,
        "h": 3,
        "id": "65f5e4a3b9e77c001a901234",
        "name": "Updated Time Series Chart",
        "series": [
          {
            "aggFn": "count",
            "dataSource": "events",
            "groupBy": [],
            "type": "time",
            "where": "level:error"
          }
        ],
        "w": 6,
        "x": 0,
        "y": 0
      },
      {
        "asRatio": false,
        "h": 3,
        "id": "65f5e4a3b9e77c001a901236",
        "name": "New Number Chart",
        "series": [
          {
            "aggFn": "count",
            "dataSource": "events",
            "type": "number",
            "where": "level:info"
          }
        ],
        "w": 6,
        "x": 6,
        "y": 0
      }
    ]
  }
}
{
"message": "Unauthorized access. API key is missing or invalid."
}
{
"message": "Dashboard not found"
}
{
"message": "Invalid dashboard configuration"
}

Autorizações

Authorization
string
header
obrigatório

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Parâmetros de caminho

id
string
obrigatório

ID do dashboard

Corpo

application/json
name
string
Exemplo:

"Updated Dashboard Name"

tags
string[]
Exemplo:
["production", "updated"]
tiles
object[]

Resposta

Dashboard atualizado com sucesso

data
object
Última modificação em 12 de junho de 2026