POST DealSheet/postaction
Post Action.
Request Information
URI Parameters
None.
Body Parameters
PostActionRequestName | Description | Type | Additional information |
---|---|---|---|
entityId |
GUID that uniquely identifies the Entity |
globally unique identifier |
None. |
actionName |
Action Name |
string |
None. |
token |
API access token |
globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{ "entityId": "95ff05a2-c614-40e1-8dfc-e4fb797ed21e", "actionName": "sample string 2", "token": "8bf39fd6-c78f-4ccf-a846-06476d9300f5" }
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">8bf39fd6-c78f-4ccf-a846-06476d9300f5</token> <actionName>sample string 2</actionName> <entityId>95ff05a2-c614-40e1-8dfc-e4fb797ed21e</entityId> </PostActionRequest>
Response Information
Resource Description
APIResultName | Description | Type | Additional 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>