GET api/Shared/linkgroupsmobile?filter={filter}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| filter | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of LinkGroup| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Description | string |
None. |
|
| EnDescription | string |
None. |
|
| UserName | string |
None. |
|
| LastChanged | date |
None. |
|
| AccountID | integer |
None. |
|
| IsSelectable | boolean |
None. |
|
| IsEditable | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Description": "sample string 2",
"EnDescription": "samplestring2",
"UserName": "sample string 3",
"LastChanged": "2025-12-17T08:46:17.9928607Z",
"AccountID": 4,
"IsSelectable": true,
"IsEditable": true
},
{
"ID": 1,
"Description": "sample string 2",
"EnDescription": "samplestring2",
"UserName": "sample string 3",
"LastChanged": "2025-12-17T08:46:17.9928607Z",
"AccountID": 4,
"IsSelectable": true,
"IsEditable": true
}
]
application/xml, text/xml
Sample:
<ArrayOfLinkGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aramark.ISIS.Domain.Models">
<LinkGroup>
<AccountID>4</AccountID>
<Description>sample string 2</Description>
<ID>1</ID>
<IsSelectable>true</IsSelectable>
<LastChanged>2025-12-17T08:46:17.9928607+00:00</LastChanged>
<UserName>sample string 3</UserName>
</LinkGroup>
<LinkGroup>
<AccountID>4</AccountID>
<Description>sample string 2</Description>
<ID>1</ID>
<IsSelectable>true</IsSelectable>
<LastChanged>2025-12-17T08:46:17.9928607+00:00</LastChanged>
<UserName>sample string 3</UserName>
</LinkGroup>
</ArrayOfLinkGroup>