GET api/Relationships
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Relationship| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| RELATION_NAME | string |
None. |
|
| OLD | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"RELATION_NAME": "sample string 2",
"OLD": 1
},
{
"ID": 1,
"RELATION_NAME": "sample string 2",
"OLD": 1
}
]
application/octet-stream
Sample:
[{"ID":1,"RELATION_NAME":"sample string 2","OLD":1},{"ID":1,"RELATION_NAME":"sample string 2","OLD":1}]
application/xml, text/xml
Sample:
<ArrayOfRelationship xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Relationship>
<ID>1</ID>
<RELATION_NAME>sample string 2</RELATION_NAME>
<OLD>1</OLD>
</Relationship>
<Relationship>
<ID>1</ID>
<RELATION_NAME>sample string 2</RELATION_NAME>
<OLD>1</OLD>
</Relationship>
</ArrayOfRelationship>