GET api/Party/ByPartyID/{partyID}
Allows the user to retrieve information for a party
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
partyID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
IPartyInfoViewModelName | 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 /> </PartyInfoViewModel>
application/json, text/json
Sample:
{ "ID": 0, "IsClosed": false, "IsVoided": false, "IsPartyPersisted": false }