List dashboards
Returns all dashboards the authenticated user can access in the project.
Results include permission flags (canEdit, canShare, canDelete) and
ownership metadata for each dashboard.
Filters only narrow the dashboards already available to the authenticated
user and project-scoped access token. Use repeated tag parameters for
exact tag matching and search for title/description text search.
Authorization
BearerAuth A project-scoped or dashboard-scoped access token. Generate one via the Token API using your project ID and project secret.
In: header
Query Parameters
Exact dashboard tags to match. Repeat the parameter for multiple tags, for example ?tag=product:inbound-ticketing&tag=audience:operations. Comma-separated values are not supported.
1 <= items <= 20Whether a dashboard must contain all supplied tags or any supplied tag. Requires at least one tag.
"all""all" | "any"Return only dashboards or only Data Apps.
"dashboard" | "data_app"Case-insensitive search against dashboard title and description.
Maximum number of dashboards to return. Use a canonical unsigned base-10 integer from 1 through 500.
5001 <= value <= 500Number of matching dashboards to skip. Use a canonical unsigned base-10 safe integer.
00 <= value <= 9007199254740991Response Body
application/json
application/json
application/json
application/json
curl -X get "https://semaphor.cloud/api/management/v1/dashboards"{
"dashboards": [
{
"id": "string",
"kind": "string",
"tags": [
"string"
],
"title": "string",
"description": "string",
"projectId": "string",
"tenantId": "string",
"isPrivate": true,
"isPublic": true,
"version": "string",
"permissions": {
"canEdit": true,
"canShare": true,
"canDelete": true
},
"ownership": {}
}
],
"total": 0,
"organizationAppearance": {}
}{
"error": "string",
"code": "string",
"errorCode": "string",
"details": {},
"success": true
}{
"error": "string",
"code": "string",
"errorCode": "string",
"details": {},
"success": true
}{
"error": "string",
"code": "string",
"errorCode": "string",
"details": {},
"success": true
}