GET api/GetLinks
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Links| Name | Description | Type | Additional information |
|---|---|---|---|
| source | string |
None. |
|
| target | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"source": "sample string 1",
"target": "sample string 2"
},
{
"source": "sample string 1",
"target": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfLinks xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models.Temp">
<Links>
<source>sample string 1</source>
<target>sample string 2</target>
</Links>
<Links>
<source>sample string 1</source>
<target>sample string 2</target>
</Links>
</ArrayOfLinks>