Create a dashboard
POST {{baseUrl}}/v1/dashboards
Creates a new dashboard. Will return a 409 when attempting to create a dashboard with a custom URL or custom domain that is already taken.
Request Body
{"customUrl"=>"status", "customDomain"=>"https://status.mycompany.com/", "logo"=>"https://static.mycompany.com/static/images/logo.svg", "header"=>"My company status", "width"=>"FULL", "refreshRate"=>60, "paginate"=>true, "paginationRate"=>60, "hideTags"=>false, "tags"=>["production"]}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
x-checkly-account | string | Your Checkly account ID, you can find it at https://app.checklyhq.com/settings/account/general | |
Content-Type | string | ||
Accept | string |
RESPONSES
status: Created
{"customUrl":"status","dashboardId":"1","customDomain":"https://status.mycompany.com/","logo":"https://static.mycompany.com/static/images/logo.svg","header":"My company status","width":"FULL","refreshRate":60,"paginate":true,"paginationRate":60,"hideTags":false,"tags":["production"]}