BatchCommandEntity
Type, Introduced in version 2.18
A batch command entity is used to create command batches, allowing transactional continuity across multiple commands.
Property forwarding does not work for commands issued for a /Many
path.
Properties
Name | Type | Summary | Introduced in |
---|---|---|---|
Path | String | The API-local URL to the command that should be invoked. For example /Common/Commands/CreateComment . |
|
Body | Object | The JSON-encoded instance of the command that should be invoked. |
|
ForwardPropertyName | String | The name of the property to forward from the response of the command to the next command in the batch. |
|
ReceivingPropertyName | String | The name of the property that should receive the forwarded property from the previous command in the batch. |
Example
{
"Path": null,
"Body": null,
"ForwardPropertyName": null,
"ReceivingPropertyName": null
}