Skip to content

Execute a batch of transactions.

POST
/api/transaction/v1/execute
curl --request POST \
--url https://example.com/api/transaction/v1/execute \
--header 'Content-Type: application/json' \
--data '{ "operations": [ { "Create": { "api_name": "example", "value": "example" } } ], "transaction": true }'
Media typeapplication/json
object
operations
required
Array
One of:
object
Create
required
object
api_name
required
string
value
required
transaction
boolean | null
Examplegenerated
{
"operations": [
{
"Create": {
"api_name": "example",
"value": "example"
}
}
],
"transaction": true
}

Ids of successfully created records.

Media typeapplication/json
object
results
required

A 1:1 mapping of opreations to results.

Array
One of:
object
Id
required
string
Examplegenerated
{
"results": [
{
"Id": "example"
}
]
}