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": "6ecaee17-b24a-40a1-bd57-7024c4732b81", "saleTypeId": 2, "payment": 3, "payoff": 4, "remaining": 1, "token": "511835a1-c338-4c57-a126-e2565b3168ac" }
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">511835a1-c338-4c57-a126-e2565b3168ac</token> <entityId>6ecaee17-b24a-40a1-bd57-7024c4732b81</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>