GET api/FeaturesJobSeeker/GetPortalHelpfulLinks?PortalUrl={PortalUrl}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PortalUrl | string |
None. |
Body Parameters
None.
Response Information
Resource Description
PortalHelpfulLinksOutput| Name | Description | Type | Additional information |
|---|---|---|---|
| ShowHelpfulLink | boolean |
None. |
|
| Data | Collection of PortalHelpfulLink |
None. |
Response Formats
application/json, text/json
Sample:
{
"showHelpfulLink": true,
"data": [
{
"text": "sample string 1",
"url": "sample string 2"
},
{
"text": "sample string 1",
"url": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<PortalHelpfulLinksOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIService.Models.Public.FeaturesJobSeeker">
<Data>
<PortalHelpfulLink>
<Text>sample string 1</Text>
<URL>sample string 2</URL>
</PortalHelpfulLink>
<PortalHelpfulLink>
<Text>sample string 1</Text>
<URL>sample string 2</URL>
</PortalHelpfulLink>
</Data>
<ShowHelpfulLink>true</ShowHelpfulLink>
</PortalHelpfulLinksOutput>