POST DealSheet/postaction

Request Information

URI Parameters

None.

Body Parameters

PostActionRequest
NameDescriptionTypeAdditional information
entityId

globally unique identifier

None.

actionName

string

None.

token

globally unique identifier

Required

Request Formats

application/json, text/json

Sample:
{
  "entityId": "d7d3532b-926d-48c9-8e10-02d58989a63e",
  "actionName": "sample string 2",
  "token": "5c7734cf-3e42-42b6-90ab-83d36f4e6cb9"
}

application/xml, text/xml

Sample:
<PostActionRequest 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">5c7734cf-3e42-42b6-90ab-83d36f4e6cb9</token>
  <actionName>sample string 2</actionName>
  <entityId>d7d3532b-926d-48c9-8e10-02d58989a63e</entityId>
</PostActionRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

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