Skip to main content
POST
/
v1
/
dashboards
Create dashboard
curl --request POST \
  --url https://api.coval.dev/v1/dashboards \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "display_name": "Production Metrics"
}
'
{
  "dashboard": {
    "name": "dashboards/abc123def456ghi789jklm",
    "display_name": "Production Metrics",
    "create_time": "2025-10-14T12:00:00Z",
    "update_time": "2025-10-14T12:00:00Z"
  }
}

Authorizations

X-API-Key
string
header
required

API key for authentication

Body

application/json
display_name
string
required

Human-readable dashboard name

Required string length: 1 - 255
Example:

"Production Metrics"

Response

Dashboard created successfully

dashboard
object
required

Dashboard resource