Catalog App Desktop Aliases
GET /catalog-apps/{catalog_app_id}/desktop-aliases
Returns a paginated list of desktop aliases associated with a specific catalog app. Desktop aliases are the process names or application identifiers the system uses to match observed desktop activity to a catalog application (e.g. chrome.exe, Google Chrome, chrome).
Path Parameters
| Parameter | Type | Description |
|---|---|---|
catalog_app_id | string (uuid) | Unique identifier for the catalog app |
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
q | string | - | Search filter against alias (case-insensitive, partial match) |
sort_by | string | alias | Sort field: alias, created_at |
sort_order | string | asc | Sort direction: asc, desc |
page_size | integer | 50 | Items per page. Max: 500 |
cursor | string | - | Pagination cursor from a previous response |
Response
| Field | Type | Description |
|---|---|---|
data | DesktopAlias[] | Array of desktop alias objects |
total_count | integer | Total number of desktop aliases for this catalog app |
next_cursor | string | null | Cursor to pass as cursor for the next page. null when on the last page. |
Example Request
curl -X GET "https://api.example.com/v2/catalog-apps/a1b2c3d4-e5f6-7890-abcd-ef1234567890/desktop-aliases" \
-H "Authorization: Bearer YOUR_API_TOKEN"
Example Response
{
"data": [
{
"id": "44556677-8899-aabb-ccdd-eeff00112233",
"alias": "chrome"
},
{
"id": "55667788-99aa-bbcc-ddee-ff0011223344",
"alias": "chrome.exe"
},
{
"id": "66778899-aabb-ccdd-eeff-001122334455",
"alias": "Google Chrome"
}
],
"total_count": 3,
"next_cursor": null
}
Pagination
This endpoint uses cursor-based pagination.
- Omit
cursoron the first request - If
next_cursoris notnull, pass its value ascursoron the next request - Repeat until
next_cursorisnull
Error Responses
| Status | Description |
|---|---|
| 400 | Invalid query parameters (e.g. unknown sort_by value) |
| 401 | Authentication required |
| 403 | Insufficient permissions |
| 404 | Catalog app not found |
| 500 | Server error |
Example Error Response
{
"error": {
"code": "not_found",
"message": "Catalog app not found",
"details": {
"catalog_app_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
}
Related Endpoints
- Get Catalog App - Full catalog app profile
- Catalog App URL Patterns - URL patterns for a catalog app