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": "c62d43fe-3f71-43ad-bddc-4511285eced8", "Name": "sample string 2", "IsActive": true, "NotificationType": "Bubble", "CustomerGroups": [ { "Id": "f1dbfabd-90ae-4947-88c6-eedd8a008320", "Name": "sample string 2", "Customer": { "Id": "91968e0d-e209-4ddd-885a-8af57ef54be1", "Name": "sample string 2" }, "IsActive": true, "Settings": [ { "Name": "EmbedReportUrl", "Value": "sample string 1" }, { "Name": "EmbedReportUrl", "Value": "sample string 1" } ] }, { "Id": "f1dbfabd-90ae-4947-88c6-eedd8a008320", "Name": "sample string 2", "Customer": { "Id": "91968e0d-e209-4ddd-885a-8af57ef54be1", "Name": "sample string 2" }, "IsActive": true, "Settings": [ { "Name": "EmbedReportUrl", "Value": "sample string 1" }, { "Name": "EmbedReportUrl", "Value": "sample string 1" } ] } ] }