POST Messages/Action
Handles the response to an action card.
Request Information
URI Parameters
None.
Body Parameters
A hydrated ActionRequest object.
ObjectNone.
Request Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<anyType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" />
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
A hydrated ActionResponse
ActionResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Succeeded |
Whether the action request was successfully handled. |
boolean |
None. |
| Response |
The response to the request. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Succeeded": true,
"Response": "sample string 2"
}
application/xml, text/xml
Sample:
<ActionResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Succeeded>true</Succeeded> <Response>sample string 2</Response> </ActionResponse>