POST DealSheet/saveconquest
Save Conquest Info.
Request Information
URI Parameters
None.
Body Parameters
SaveConquestRequestName | Description | Type | Additional information |
---|---|---|---|
entityId |
GUID that uniquely identifies the Entity |
globally unique identifier |
None. |
saleTypeId |
Sale Type Id |
integer |
None. |
payment |
Payment |
integer |
None. |
payoff |
Payoff |
integer |
None. |
remaining |
Payment |
integer |
None. |
token |
API access token |
globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{ "entityId": "bbced19c-d415-439d-b542-4e2e9fe04e47", "saleTypeId": 2, "payment": 3, "payoff": 4, "remaining": 1, "token": "1dc699c0-e3e3-44b3-94f8-269eef6c7279" }
application/xml, text/xml
Sample:
<SaveConquestRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models.DealSheet"> <token xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models">1dc699c0-e3e3-44b3-94f8-269eef6c7279</token> <entityId>bbced19c-d415-439d-b542-4e2e9fe04e47</entityId> <payment>3</payment> <payoff>4</payoff> <remaining>1</remaining> <saleTypeId>2</saleTypeId> </SaveConquestRequest>
Response Information
Resource Description
APIResultName | Description | Type | Additional information |
---|---|---|---|
code |
API result code |
integer |
None. |
error |
API error message |
string |
None. |
APIVersion |
API Version |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "APIVersion": 1, "code": 200, "error": "sample string 2" }
application/xml, text/xml
Sample:
<APIResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API"> <APIVersion>1</APIVersion> <error>sample string 2</error> </APIResult>