Semaphor

List visuals

Returns all saved visuals the authenticated user can access in the project. Results include permission flags and ownership metadata. Use search to filter by title or description.

GET
/api/management/v1/visuals

Authorization

BearerAuth
AuthorizationBearer <token>

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

projectId?string
tenantId?string
search?string
limit?integer
Default500
offset?integer
Default0

Response Body

application/json

application/json

application/json

curl -X get "https://semaphor.cloud/api/management/v1/visuals"
{
  "visuals": [
    {
      "id": "string",
      "title": "string",
      "description": "string",
      "projectId": "string",
      "tenantId": "string",
      "frameObject": {},
      "permissions": {
        "canEdit": true,
        "canShare": true,
        "canDelete": true
      },
      "ownership": {}
    }
  ],
  "total": 0
}
{
  "error": "string",
  "code": "string",
  "details": {},
  "success": true
}
{
  "error": "string",
  "code": "string",
  "details": {},
  "success": true
}