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.
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
Default
500offset?integer
Default
0Response 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
}