post https://api-ext.zluri.com/v2/users//applications
This API returns a list of applications used by a specific user in your organization. The response includes both system and custom fields for each application, allowing rich filtering and visibility.
Supported Filters Table:
| Field | Type | Description / Allowed Values |
|---|---|---|
user_app_status | string | User Application Status (active, inactive, etc.) |
user_app_last_used | string | Last Used (date/time, ISO 8601 format) |
app_archive | boolean | App Archive (true/false) |
user_app_archive | boolean | User App Archive (true/false) |
app_type | string | App Type (application, website, device, browser, other) |
source_array | string | Source |
user_app_discovered | string | Discovery Date (date/time, ISO 8601 format) |
app_authorization_status | string | Authorisation Status (restricted, needs review, centrally managed, etc.) |
user_archive | boolean | User Archive (true/false) |
custom_fields | object | Custom Fields (see example below) |
Example Custom Field Filter:
{
"field_id": "custom_fields",
"field_values": {
"custom_field_id": "679b613f315ee0a11cb67bd1",
"custom_field_values": ["India"]
}
}
Filtering, Sorting, Pagination, and Search:
- Use the
filter_byarray in the request body to filter by system or custom fields. - For custom fields, use
field_id: custom_fieldsand providecustom_field_idandcustom_field_values. - Use the
sort_byarray to sort by any field (e.g.,app_name,user_app_last_used). - Use
pageandpage_sizefor pagination. - Use
search_queryfor comma-separated search terms to filter app names.
