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
AppDto| Name | 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": "f0b9a094-18a9-4d6f-8521-4651130f5906",
"Name": "sample string 2",
"IsActive": true,
"NotificationType": "Bubble",
"CustomerGroups": [
{
"Id": "0b5a43e1-3486-4414-b257-c298dbb4842e",
"Name": "sample string 2",
"Customer": {
"Id": "028c8604-efd1-4030-a9b3-be94ef78214a",
"Name": "sample string 2"
},
"IsActive": true,
"Settings": [
{
"Name": "EmbedReportUrl",
"Value": "sample string 1"
},
{
"Name": "EmbedReportUrl",
"Value": "sample string 1"
}
]
},
{
"Id": "0b5a43e1-3486-4414-b257-c298dbb4842e",
"Name": "sample string 2",
"Customer": {
"Id": "028c8604-efd1-4030-a9b3-be94ef78214a",
"Name": "sample string 2"
},
"IsActive": true,
"Settings": [
{
"Name": "EmbedReportUrl",
"Value": "sample string 1"
},
{
"Name": "EmbedReportUrl",
"Value": "sample string 1"
}
]
}
]
}