Skip to main content
POST
/
transaction
/
send-multiple
Send multiple transactions
curl --request POST \
  --url https://api.example.com/transaction/send-multiple \
  --header 'Content-Type: application/json' \
  --data '{}'
const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({})
};

fetch('https://api.example.com/transaction/send-multiple', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.example.com/transaction/send-multiple"

payload = {}
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
false
{}

Body

application/json

JSON array of Transaction objects

The body is of type object.

Response

Successful response

The response is of type object.