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": "469714a5-784b-4469-9cb3-8fbe80a88eb6",
"Name": "sample string 2",
"IsActive": true,
"NotificationType": "Bubble",
"CustomerGroups": [
{
"Id": "cd4b356b-3de6-45b4-9aa1-0a8cddfb3aef",
"Name": "sample string 2",
"Customer": {
"Id": "512f0baa-e885-4669-b026-c763ba924648",
"Name": "sample string 2"
},
"IsActive": true,
"Settings": [
{
"Name": "EmbedReportUrl",
"Value": "sample string 1"
},
{
"Name": "EmbedReportUrl",
"Value": "sample string 1"
}
]
},
{
"Id": "cd4b356b-3de6-45b4-9aa1-0a8cddfb3aef",
"Name": "sample string 2",
"Customer": {
"Id": "512f0baa-e885-4669-b026-c763ba924648",
"Name": "sample string 2"
},
"IsActive": true,
"Settings": [
{
"Name": "EmbedReportUrl",
"Value": "sample string 1"
},
{
"Name": "EmbedReportUrl",
"Value": "sample string 1"
}
]
}
]
}