Get app configuration by ID
Returns the full config. Non-admin users can only access configs in their tenantIds.
Request
Method: GET
Path: /api/apps/{id}
Authentication: Not required
Parameters
| Name | Type | In | Required | Description |
|---|---|---|---|---|
| id | string | path | Yes |
Responses
200 - App config
403 - Not permitted to view this program
Examples
cURL
curl -X GET \
-H "Content-Type: application/json" \
http://localhost:3000/api/apps/{id}
JavaScript
const response = await fetch('http://localhost:3000/api/apps/{id}', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);
This documentation is automatically generated from the OpenAPI specification.