Execute a batch of transactions.
POST
/api/transaction/v1/execute
const url = 'https://example.com/api/transaction/v1/execute';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"operations":[{"Create":{"api_name":"example","value":"example"}}],"transaction":true}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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 }'Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
Examplegenerated
{ "operations": [ { "Create": { "api_name": "example", "value": "example" } } ], "transaction": true}Responses
Section titled “Responses”Ids of successfully created records.