GET api/Party/ByGuid/{partyGUID}/{repDID}
Allows the user to retrieve information for a party
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| partyGUID |
The Party Display ID for the party. |
string |
Required |
| repDID |
The referring RepDID |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
IPartyInfoViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| PartyGUID | string |
None. |
|
| HostCustomerName | string |
None. |
|
| RepDID | string |
None. |
|
| RepDisplayName | string |
None. |
|
| PartyDate | date |
None. |
|
| PartyInfo | string |
None. |
|
| IsClosed | boolean |
None. |
|
| IsVoided | boolean |
None. |
|
| IsPartyPersisted | boolean |
None. |
|
| ProjectedAutoCloseDate | date |
None. |
Response Formats
application/xml, text/xml
Sample:
<PartyInfoViewModel> <ID>0</ID> <PartyGUID /> <HostCustomerName /> <RepDID /> <RepDisplayName /> <PartyDate /> <PartyInfo /> <IsClosed>False</IsClosed> <IsVoided>False</IsVoided> <IsPartyPersisted>False</IsPartyPersisted> <ProjectedAutoCloseDate /> <DistributionTypeOptions /> </PartyInfoViewModel>
application/json, text/json
Sample:
{
"ID": 0,
"IsClosed": false,
"IsVoided": false,
"IsPartyPersisted": false
}