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": "755bef41-4110-4402-a161-c15882ee1f53",
"saleTypeId": 2,
"payment": 3,
"payoff": 4,
"remaining": 1,
"token": "3ef5c65e-4347-4b74-8fff-31f2f3f39b9a"
}
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">3ef5c65e-4347-4b74-8fff-31f2f3f39b9a</token> <entityId>755bef41-4110-4402-a161-c15882ee1f53</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>