Skip to main content

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

NameTypeInRequiredDescription
pageintegerqueryNo
pageSizeintegerqueryNo
sortBystringqueryNo
sortOrderstringqueryNo
searchstringqueryNo
includeArchivedbooleanqueryNo

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.