Get Beneficiaries List
The API is utilized to retrieve beneficiaries' details and fetch comprehensive information about all the beneficiaries associated with the organization account, with optional filters. Results are paginated, with a default list limit of 50 results.
GET
/payments/beneficiaries
Body Parameters Request
skip
url parameter
integer
The number of items to skip from result set
?skip=3
take
url parameter
integer
default = 50
The max number of items to return in the result set
?take=50
id
url parameter
array
string
an array of specific id’s to return
?id=15&id=34
country
url parameter
array
2 letter ISO country code
a list of country id’s to filter by
?country=US&country=GB&country=FR
currency
url parameter
array
3 letter ISO currency code
a list of currency codes to filter by
?currency=EUR
tag
url parameter
array
tag:name={value}
A list of tags and their values to filter by
?tag:department=sales&tag:department=marketing
sort
url parameter
array
sort:field={direction}
List of fields to sort by. includes:
currency
bank_details.account_country
id
bank_details.name
?sort:currency=ASC&sort:bank_details.account_country=DESC
Body Parameters Response
facets
object
facets.countries
object
Breakdown of countries and the count of beneficiaries mapping to them in the entire result set
facets.currencies
object
Breakdown of currencies and the count of beneficiaries mapping to them in the entire result set
facets.user_tags
object
Breakdown of user tags and the count of beneficiaries mapping to them in the entire result set
items
array
object
items[]
object
items[].payee.source.type
string
contact
Entity type (contact)
items[].id
string
Unique id of beneficiary
items[].entity_type
string
INDIVIDUAL, BUSINESS
items[].name
items[].account_country
string
items[].currency
string
/^([A-Z]{3,3})$/
The 3 letter ISO currency code
items[].active
boolean
Is this beneficiary active for payments
items[].status
ActiveState
ACTIVE, ACTIVATING, REQUIRES_INPUT, REQUIRES_ATTENTION, DISABLED
items[].user_tags
object
paging
Paging
paging.skip
integer
The number of items to skip in the result set
paging.take
integer
The max number of items to return in the result set
paging.total
integer
The total number of results matching the filters
Request Example
Response Examples
Last updated