POST DealSheet/saveconquest

Save Conquest Info.

Request Information

URI Parameters

None.

Body Parameters

SaveConquestRequest
NameDescriptionTypeAdditional 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": "711329ba-7a48-4670-bb89-5a43d1e2a5d9",
  "saleTypeId": 2,
  "payment": 3,
  "payoff": 4,
  "remaining": 1,
  "token": "933330b1-a862-4220-8c3b-920145ff8752"
}

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">933330b1-a862-4220-8c3b-920145ff8752</token>
  <entityId>711329ba-7a48-4670-bb89-5a43d1e2a5d9</entityId>
  <payment>3</payment>
  <payoff>4</payoff>
  <remaining>1</remaining>
  <saleTypeId>2</saleTypeId>
</SaveConquestRequest>

Response Information

Resource Description

APIResult
NameDescriptionTypeAdditional 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>