GET Orders/PlaceOrderLink/{PartyTypeID}/{PartyID}
This method will return a list of agency objects all tied to the examiner credentials supplied.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PartyTypeID | integer |
Required |
|
| PartyID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
List of Agency objects
Collection of PartyUserLink| Name | Description | Type | Additional information |
|---|---|---|---|
| PartyName | string |
None. |
|
| PartyID | integer |
None. |
|
| PartyType | string |
None. |
|
| PartyTypeID | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"PartyName": "sample string 1",
"PartyID": 2,
"PartyType": "sample string 3",
"PartyTypeID": 4
},
{
"PartyName": "sample string 1",
"PartyID": 2,
"PartyType": "sample string 3",
"PartyTypeID": 4
}
]
application/xml, text/xml
Sample:
<ArrayOfPartyUserLink xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<PartyUserLink>
<PartyName>sample string 1</PartyName>
<PartyID>2</PartyID>
<PartyType>sample string 3</PartyType>
<PartyTypeID>4</PartyTypeID>
</PartyUserLink>
<PartyUserLink>
<PartyName>sample string 1</PartyName>
<PartyID>2</PartyID>
<PartyType>sample string 3</PartyType>
<PartyTypeID>4</PartyTypeID>
</PartyUserLink>
</ArrayOfPartyUserLink>