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": "2d9c0ac3-9fc2-403c-bf40-2be09241bce4", "Name": "sample string 2", "IsActive": true, "NotificationType": "Bubble", "CustomerGroups": [ { "Id": "fabc905c-8beb-402f-8b87-7030b3dbd832", "Name": "sample string 2", "Customer": { "Id": "2bbf2af3-89ca-4b51-bb9b-567184a43664", "Name": "sample string 2" }, "IsActive": true, "Settings": [ { "Name": "EmbedReportUrl", "Value": "sample string 1" }, { "Name": "EmbedReportUrl", "Value": "sample string 1" } ] }, { "Id": "fabc905c-8beb-402f-8b87-7030b3dbd832", "Name": "sample string 2", "Customer": { "Id": "2bbf2af3-89ca-4b51-bb9b-567184a43664", "Name": "sample string 2" }, "IsActive": true, "Settings": [ { "Name": "EmbedReportUrl", "Value": "sample string 1" }, { "Name": "EmbedReportUrl", "Value": "sample string 1" } ] } ] }