POST DealSheet/saveconquest
Request Information
URI Parameters
None.
Body Parameters
SaveConquestRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| entityId | globally unique identifier |
None. |
|
| saleTypeId | integer |
None. |
|
| payment | integer |
None. |
|
| payoff | integer |
None. |
|
| remaining | integer |
None. |
|
| token | globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{
"entityId": "caf55aa3-fcb5-4b91-a4eb-bf03dffa5150",
"saleTypeId": 2,
"payment": 3,
"payoff": 4,
"remaining": 1,
"token": "24033576-dfbf-478a-8d44-b9dee502f4e0"
}
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">24033576-dfbf-478a-8d44-b9dee502f4e0</token> <entityId>caf55aa3-fcb5-4b91-a4eb-bf03dffa5150</entityId> <payment>3</payment> <payoff>4</payoff> <remaining>1</remaining> <saleTypeId>2</saleTypeId> </SaveConquestRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResult| Name | Description | Type | Additional information |
|---|---|---|---|
| code | integer |
None. |
|
| error | string |
None. |
|
| APIVersion | 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>