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": "ed480736-d56d-45de-b828-dc28bc0b7b16",
"Name": "sample string 2",
"IsActive": true,
"NotificationType": "Bubble",
"CustomerGroups": [
{
"Id": "cdc1aef9-acac-4520-b834-e7ddb9edf3da",
"Name": "sample string 2",
"Customer": {
"Id": "32106998-9d77-4863-828f-f225f1cc0e84",
"Name": "sample string 2"
},
"IsActive": true,
"Settings": [
{
"Name": "EmbedReportUrl",
"Value": "sample string 1"
},
{
"Name": "EmbedReportUrl",
"Value": "sample string 1"
}
]
},
{
"Id": "cdc1aef9-acac-4520-b834-e7ddb9edf3da",
"Name": "sample string 2",
"Customer": {
"Id": "32106998-9d77-4863-828f-f225f1cc0e84",
"Name": "sample string 2"
},
"IsActive": true,
"Settings": [
{
"Name": "EmbedReportUrl",
"Value": "sample string 1"
},
{
"Name": "EmbedReportUrl",
"Value": "sample string 1"
}
]
}
]
}