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": "6f12a58f-1c04-4d11-9aa3-dd7fe73b4e14",
"saleTypeId": 2,
"payment": 3,
"payoff": 4,
"remaining": 1,
"token": "353641fb-56e9-4ca1-93f0-751cf5fe244e"
}
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">353641fb-56e9-4ca1-93f0-751cf5fe244e</token> <entityId>6f12a58f-1c04-4d11-9aa3-dd7fe73b4e14</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>