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": "6ff86a96-3261-49e1-b361-83317846f2f4",
    "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": "#D7F5E1",
      "icon": "📊",
      "auto_refresh": false,
      "updated_at": "2025-05-29T17:41:34.274-07:00",
      "created_at": "2025-05-29T17:41:34.274-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.