curl --request GET \
--url https://sandbox-api.va.meridianpay.com/v1/beneficiaries \
--header 'Authorization: Bearer <token>'import requests
url = "https://sandbox-api.va.meridianpay.com/v1/beneficiaries"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://sandbox-api.va.meridianpay.com/v1/beneficiaries', 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://sandbox-api.va.meridianpay.com/v1/beneficiaries",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://sandbox-api.va.meridianpay.com/v1/beneficiaries"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://sandbox-api.va.meridianpay.com/v1/beneficiaries")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox-api.va.meridianpay.com/v1/beneficiaries")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"beneficiaries": [
{
"id": "uspay-z2oaq71hlo7fhvck2xw0nidg",
"counterpartyId": "uspay-z2oaq71hlo7fhvck2xw0nidg",
"createdAt": "2026-09-09T20:39:30Z",
"updatedAt": "2026-09-09T20:39:30Z",
"name": "Nimbus Settlement Ltd",
"displayName": "Nimbus Settlement Ltd",
"email": "treasury@nimbus-settlement.com",
"address": {
"addressLine1": "25 Sir John Rogerson's Quay",
"city": "Dublin",
"stateProvince": "County Dublin",
"postalCode": "D02 XY45",
"countryCode": "IE"
},
"relationshipToUser": "THIRD_PARTY",
"type": "BUSINESS"
},
{
"id": "uspay-rb5b65cstfldk53lrnaon01r",
"counterpartyId": "uspay-rb5b65cstfldk53lrnaon01r",
"createdAt": "2026-09-09T20:39:57Z",
"updatedAt": "2026-09-09T20:39:57Z",
"firstName": "Sherlock",
"lastName": "Holmes",
"displayName": "Sherlock Holmes",
"email": "sherlock@baker-street.example",
"address": {
"addressLine1": "1 Market Street",
"city": "San Francisco",
"stateProvince": "CA",
"postalCode": "94105",
"countryCode": "US"
},
"relationshipToUser": "THIRD_PARTY",
"type": "PERSON"
}
]
}{
"message": "<string>",
"validationErrors": [
{
"fieldRef": "<string>",
"type": "InvalidFormat",
"message": "<string>"
}
],
"errorCode": "UNAUTHORIZED"
}{
"message": "<string>",
"validationErrors": [
{
"fieldRef": "<string>",
"type": "InvalidFormat",
"message": "<string>"
}
],
"errorCode": "UNAUTHORIZED"
}List Beneficiaries
Returns the beneficiaries associated with the authenticated Meridian account.
curl --request GET \
--url https://sandbox-api.va.meridianpay.com/v1/beneficiaries \
--header 'Authorization: Bearer <token>'import requests
url = "https://sandbox-api.va.meridianpay.com/v1/beneficiaries"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://sandbox-api.va.meridianpay.com/v1/beneficiaries', 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://sandbox-api.va.meridianpay.com/v1/beneficiaries",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://sandbox-api.va.meridianpay.com/v1/beneficiaries"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://sandbox-api.va.meridianpay.com/v1/beneficiaries")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox-api.va.meridianpay.com/v1/beneficiaries")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"beneficiaries": [
{
"id": "uspay-z2oaq71hlo7fhvck2xw0nidg",
"counterpartyId": "uspay-z2oaq71hlo7fhvck2xw0nidg",
"createdAt": "2026-09-09T20:39:30Z",
"updatedAt": "2026-09-09T20:39:30Z",
"name": "Nimbus Settlement Ltd",
"displayName": "Nimbus Settlement Ltd",
"email": "treasury@nimbus-settlement.com",
"address": {
"addressLine1": "25 Sir John Rogerson's Quay",
"city": "Dublin",
"stateProvince": "County Dublin",
"postalCode": "D02 XY45",
"countryCode": "IE"
},
"relationshipToUser": "THIRD_PARTY",
"type": "BUSINESS"
},
{
"id": "uspay-rb5b65cstfldk53lrnaon01r",
"counterpartyId": "uspay-rb5b65cstfldk53lrnaon01r",
"createdAt": "2026-09-09T20:39:57Z",
"updatedAt": "2026-09-09T20:39:57Z",
"firstName": "Sherlock",
"lastName": "Holmes",
"displayName": "Sherlock Holmes",
"email": "sherlock@baker-street.example",
"address": {
"addressLine1": "1 Market Street",
"city": "San Francisco",
"stateProvince": "CA",
"postalCode": "94105",
"countryCode": "US"
},
"relationshipToUser": "THIRD_PARTY",
"type": "PERSON"
}
]
}{
"message": "<string>",
"validationErrors": [
{
"fieldRef": "<string>",
"type": "InvalidFormat",
"message": "<string>"
}
],
"errorCode": "UNAUTHORIZED"
}{
"message": "<string>",
"validationErrors": [
{
"fieldRef": "<string>",
"type": "InvalidFormat",
"message": "<string>"
}
],
"errorCode": "UNAUTHORIZED"
}Authorizations
Bearer token authentication, for client-server calls.
Send the access token issued by POST /v1/auth/token as Authorization: Bearer {token}. The token carries its own program and user context, so the X-Meridian-* headers are not required. See Authentication.
Headers
Server-to-server (HMAC) requests only. Partner API key issued by Meridian during provisioning.
Server-to-server (HMAC) requests only. Current time in milliseconds since the Unix epoch. Must be within 60 seconds of the request.
Server-to-server (HMAC) requests only. Identifies the program context for the request.
Server-to-server (HMAC) requests only. Identifies the Meridian user targeted by the request. Required for MULTI_USER integrations; omit for SINGLE_USER.
Response
The beneficiaries for the authenticated account
A list of beneficiaries
The beneficiaries for the authenticated account
A person beneficiary
- Person Beneficiary Response
- Business Beneficiary Response
Show child attributes
Show child attributes