GET api/Shared/linkgroupsmobile?filter={filter}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
filter

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of LinkGroup
NameDescriptionTypeAdditional 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": "2024-05-18T05:04:23.9984282Z",
    "AccountID": 4,
    "IsSelectable": true,
    "IsEditable": true
  },
  {
    "ID": 1,
    "Description": "sample string 2",
    "EnDescription": "samplestring2",
    "UserName": "sample string 3",
    "LastChanged": "2024-05-18T05:04:23.9984282Z",
    "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>2024-05-18T05:04:23.9984282+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>2024-05-18T05:04:23.9984282+00:00</LastChanged>
    <UserName>sample string 3</UserName>
  </LinkGroup>
</ArrayOfLinkGroup>