GET restapi/personal/person/sitelinks/v1
Gets the site links those are visible for the user.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of site links
EntityListOfItslearning.RestApi.Entities.SiteLinkName | Description | Type | Additional information |
---|---|---|---|
EntityArray | Collection of Itslearning.RestApi.Entities.SiteLink |
None. |
|
Total | integer |
None. |
|
CurrentPageIndex | integer |
None. |
|
PageSize | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "EntityArray": [ { "Title": "sample string 1", "Url": "sample string 2", "DisplayInSeparateWindow": true }, { "Title": "sample string 1", "Url": "sample string 2", "DisplayInSeparateWindow": true } ], "Total": 1, "CurrentPageIndex": 2, "PageSize": 3 }
application/xml, text/xml
Sample:
<EntityList xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <CurrentPageIndex>2</CurrentPageIndex> <EntityArray> <SiteLink> <DisplayInSeparateWindow>true</DisplayInSeparateWindow> <Title>sample string 1</Title> <Url>sample string 2</Url> </SiteLink> <SiteLink> <DisplayInSeparateWindow>true</DisplayInSeparateWindow> <Title>sample string 1</Title> <Url>sample string 2</Url> </SiteLink> </EntityArray> <PageSize>3</PageSize> <Total>1</Total> </EntityList>