GetBatchPaymentDetails
curl --request POST \
--url https://api.mpcvault.com/v1/getBatchPaymentDetails \
--header 'Content-Type: application/json' \
--header 'x-mtoken: <api-key>' \
--data '
{
"uuid": "<string>"
}
'import requests
url = "https://api.mpcvault.com/v1/getBatchPaymentDetails"
payload = { "uuid": "<string>" }
headers = {
"x-mtoken": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-mtoken': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({uuid: '<string>'})
};
fetch('https://api.mpcvault.com/v1/getBatchPaymentDetails', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mpcvault.com/v1/getBatchPaymentDetails",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'uuid' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-mtoken: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mpcvault.com/v1/getBatchPaymentDetails"
payload := strings.NewReader("{\n \"uuid\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-mtoken", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mpcvault.com/v1/getBatchPaymentDetails")
.header("x-mtoken", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"uuid\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mpcvault.com/v1/getBatchPaymentDetails")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-mtoken"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"uuid\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"batchPayment": {
"btcBatchSendNative": {
"from": "<string>",
"recipients": [
{
"address": "<string>",
"amount": "<string>",
"notes": "<string>"
}
]
},
"uuid": "<string>",
"name": "<string>",
"notes": "<string>",
"failedReason": "<string>",
"creationTimestamp": 123,
"approvalSigningRequest": {
"aptosMessage": {
"from": "<string>",
"content": {
"address": "<string>",
"application": "<string>",
"chainId": "<string>",
"message": "<string>",
"nonce": "<string>"
}
},
"uuid": "<string>",
"failedReason": "<string>",
"txHash": "<string>",
"creationTimestamp": 123,
"notes": "<string>",
"vaultUuid": "<string>",
"callbackClientSignerPublicKey": "<string>",
"simulation": "aSDinaTvuI8gbWludGxpZnk=",
"evmInputDataDecode": {
"function": "<string>",
"args": [
{
"name": "<string>",
"type": "<string>",
"data": "<string>"
}
]
}
},
"sendSigningRequest": {
"aptosMessage": {
"from": "<string>",
"content": {
"address": "<string>",
"application": "<string>",
"chainId": "<string>",
"message": "<string>",
"nonce": "<string>"
}
},
"uuid": "<string>",
"failedReason": "<string>",
"txHash": "<string>",
"creationTimestamp": 123,
"notes": "<string>",
"vaultUuid": "<string>",
"callbackClientSignerPublicKey": "<string>",
"simulation": "aSDinaTvuI8gbWludGxpZnk=",
"evmInputDataDecode": {
"function": "<string>",
"args": [
{
"name": "<string>",
"type": "<string>",
"data": "<string>"
}
]
}
}
},
"error": {
"message": "<string>"
}
}Batch Payments
GetBatchPaymentDetails
Get details and status of a batch payment.
POST
/
v1
/
getBatchPaymentDetails
GetBatchPaymentDetails
curl --request POST \
--url https://api.mpcvault.com/v1/getBatchPaymentDetails \
--header 'Content-Type: application/json' \
--header 'x-mtoken: <api-key>' \
--data '
{
"uuid": "<string>"
}
'import requests
url = "https://api.mpcvault.com/v1/getBatchPaymentDetails"
payload = { "uuid": "<string>" }
headers = {
"x-mtoken": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-mtoken': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({uuid: '<string>'})
};
fetch('https://api.mpcvault.com/v1/getBatchPaymentDetails', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mpcvault.com/v1/getBatchPaymentDetails",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'uuid' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-mtoken: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mpcvault.com/v1/getBatchPaymentDetails"
payload := strings.NewReader("{\n \"uuid\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-mtoken", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mpcvault.com/v1/getBatchPaymentDetails")
.header("x-mtoken", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"uuid\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mpcvault.com/v1/getBatchPaymentDetails")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-mtoken"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"uuid\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"batchPayment": {
"btcBatchSendNative": {
"from": "<string>",
"recipients": [
{
"address": "<string>",
"amount": "<string>",
"notes": "<string>"
}
]
},
"uuid": "<string>",
"name": "<string>",
"notes": "<string>",
"failedReason": "<string>",
"creationTimestamp": 123,
"approvalSigningRequest": {
"aptosMessage": {
"from": "<string>",
"content": {
"address": "<string>",
"application": "<string>",
"chainId": "<string>",
"message": "<string>",
"nonce": "<string>"
}
},
"uuid": "<string>",
"failedReason": "<string>",
"txHash": "<string>",
"creationTimestamp": 123,
"notes": "<string>",
"vaultUuid": "<string>",
"callbackClientSignerPublicKey": "<string>",
"simulation": "aSDinaTvuI8gbWludGxpZnk=",
"evmInputDataDecode": {
"function": "<string>",
"args": [
{
"name": "<string>",
"type": "<string>",
"data": "<string>"
}
]
}
},
"sendSigningRequest": {
"aptosMessage": {
"from": "<string>",
"content": {
"address": "<string>",
"application": "<string>",
"chainId": "<string>",
"message": "<string>",
"nonce": "<string>"
}
},
"uuid": "<string>",
"failedReason": "<string>",
"txHash": "<string>",
"creationTimestamp": 123,
"notes": "<string>",
"vaultUuid": "<string>",
"callbackClientSignerPublicKey": "<string>",
"simulation": "aSDinaTvuI8gbWludGxpZnk=",
"evmInputDataDecode": {
"function": "<string>",
"args": [
{
"name": "<string>",
"type": "<string>",
"data": "<string>"
}
]
}
}
},
"error": {
"message": "<string>"
}
}Returns batch payment details by UUID, including status, recipient list, and associated signing requests. Use this endpoint to check progress or confirm completion.
Authorizations
Your API token. Required for all API requests.
Body
application/json
required:true symbol_value:"9f5ee5fb-07f5-470c-a2ff-081e2d6d107a" comment:uuid is the unique identifier of the batch payment.
Response
200 - application/json
Success
Was this page helpful?
⌘I