POST
/
v1
/
dashboards
curl --request POST \
  --url https://api.rootly.com/v1/dashboards \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "dashboards",
    "attributes": {
      "name": "<string>",
      "description": "<string>",
      "owner": "user",
      "public": true,
      "range": "<string>",
      "auto_refresh": true,
      "color": "#FCF2CF",
      "icon": "<string>",
      "period": "day"
    }
  }
}'
{
  "data": {
    "id": "d86ff582-85d7-4c0e-b47b-3643d5588783",
    "type": "dashboards",
    "attributes": {
      "team_id": 69,
      "user_id": 71,
      "name": "Test dashboard",
      "description": null,
      "slug": "test-dashboard",
      "public": false,
      "owner": "user",
      "range": "Last 30 Days",
      "period": "day",
      "color": "#E9E2FF",
      "icon": "📊",
      "auto_refresh": false,
      "updated_at": "2025-05-08T00:17:37.919-07:00",
      "created_at": "2025-05-08T00:17:37.919-07:00"
    },
    "relationships": {
      "panels": {
        "data": []
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/vnd.api+json

Response

201
application/vnd.api+json
dashboard created

The response is of type object.