GET api/apps/{id}
Get an app by ID
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
App ID |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
AppDtoName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
Name | string |
Required Max length: 50 |
|
IsActive | boolean |
None. |
|
NotificationType | NotificationTypeEnum |
None. |
|
CustomerGroups | Collection of CustomerGroupDto |
None. |
Response Formats
application/json, text/json
Sample:
{ "Id": "66bc7bf3-648e-41d7-b17e-3ee9da84a7a6", "Name": "sample string 2", "IsActive": true, "NotificationType": "Bubble", "CustomerGroups": [ { "Id": "cc29c155-d2f8-4c4d-abba-5655688d19cd", "Name": "sample string 2", "Customer": { "Id": "2f3ca12e-0853-4366-91f7-a40be084a83d", "Name": "sample string 2" }, "IsActive": true, "Settings": [ { "Name": "EmbedReportUrl", "Value": "sample string 1" }, { "Name": "EmbedReportUrl", "Value": "sample string 1" } ] }, { "Id": "cc29c155-d2f8-4c4d-abba-5655688d19cd", "Name": "sample string 2", "Customer": { "Id": "2f3ca12e-0853-4366-91f7-a40be084a83d", "Name": "sample string 2" }, "IsActive": true, "Settings": [ { "Name": "EmbedReportUrl", "Value": "sample string 1" }, { "Name": "EmbedReportUrl", "Value": "sample string 1" } ] } ] }