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": "00da7989-de36-4d0a-a19d-0367427d5963", "saleTypeId": 2, "payment": 3, "payoff": 4, "remaining": 1, "token": "63122826-d784-49b9-8c59-0e4a0e66c692" }
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">63122826-d784-49b9-8c59-0e4a0e66c692</token> <entityId>00da7989-de36-4d0a-a19d-0367427d5963</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>