GET v1/grid/nodes/{WilhelmstiftValue}/applications?page={page}&pageSize={pageSize}
Liefert alle Applications für einen spezifischen Node (paginiert).
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| WilhelmstiftValue | globally unique identifier |
Required |
|
| page | integer |
Default value is 1 |
|
| pageSize | integer |
Default value is 100 |
Body Parameters
None.
Response Information
Resource Description
PagedResultOfRydelApplicationDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of RydelApplicationDto |
None. |
|
| TotalCount | integer |
None. |
|
| Page | integer |
None. |
|
| PageSize | integer |
None. |
|
| HasNextPage | boolean |
None. |
|
| HasPreviousPage | boolean |
None. |
|
| TotalPages | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Items": [
{
"Id": "2532b1ce-6063-44af-a0de-b4953ac601d9",
"Name": "sample string 2",
"Path": "sample string 3",
"Type": "sample string 4",
"AccessLevel": 5,
"Critical": true
},
{
"Id": "2532b1ce-6063-44af-a0de-b4953ac601d9",
"Name": "sample string 2",
"Path": "sample string 3",
"Type": "sample string 4",
"AccessLevel": 5,
"Critical": true
}
],
"TotalCount": 1,
"Page": 2,
"PageSize": 3,
"HasNextPage": false,
"HasPreviousPage": true,
"TotalPages": 1
}