Start typing to search.

API Reference

Get current input-widget config values

View Markdown
GET /api/dashboards/{id}/config

Returns the job_config values for keys declared by this dashboard's input widgets, keyed by each widget's config_key. Open to any authenticated user.

Operation IDgetDashboardConfig

Authentication

  • BearerAuth·http bearer·API key token (envoy_<hex>). Create keys from Settings → API Keys — see Using the API.

Path parameters

idintegerrequired

Resource ID

Success response body

200Current config values

Current config values

Content typeapplication/json

responseobject
1 property
configobjectrequired

Current job_config values keyed by each input widget's config_key.

Additional properties are allowed.

Error responses

400Validation error

Validation error

Content typeapplication/json

responseobject
2 properties
errorstring
messagestring
Example response
{
  "error": "VALIDATION_ERROR",
  "message": "Invalid input"
}

404Resource not found

Resource not found

Content typeapplication/json

responseobject
2 properties
errorstring
messagestring
Example response
{
  "error": "NOT_FOUND",
  "message": "Resource not found"
}