List app configurations
Returns paginated, sortable, searchable app configs. Non-admin users only see configs
listed in their tenantIds claim. Each item includes the entity count for that config.
Request
Method: GET
Path: /api/apps
Authentication: Not required
Parameters
| Name | Type | In | Required | Description |
|---|---|---|---|---|
| page | integer | query | No | |
| pageSize | integer | query | No | |
| sortBy | string | query | No | |
| sortOrder | string | query | No | |
| search | string | query | No | |
| includeArchived | boolean | query | No |
Responses
200 - Paginated list
Examples
cURL
curl -X GET \
-H "Content-Type: application/json" \
http://localhost:3000/api/apps
JavaScript
const response = await fetch('http://localhost:3000/api/apps', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);
This documentation is automatically generated from the OpenAPI specification.