POST
/
v1
/
dashboards
curl --request POST \
  --url https://api.rootly.com/v1/dashboards \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
  --header 'content-type: application/vnd.api+json'
{
  "data": {
    "id": "bdfb032d-0975-40d1-8833-9d2b17c35c35",
    "type": "dashboards",
    "attributes": {
      "team_id": 90,
      "user_id": 88,
      "name": "Test dashboard",
      "description": null,
      "slug": "test-dashboard",
      "public": false,
      "owner": "user",
      "range": "Last 30 Days",
      "period": "day",
      "color": "#FCF2CF",
      "icon": "📊",
      "auto_refresh": false,
      "updated_at": "2025-03-11T19:09:20.100-07:00",
      "created_at": "2025-03-11T19:09:20.100-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
data
object
required

Response

201
application/vnd.api+json
dashboard created
data
object
required