Get beneficiaries
Retrieve all beneficiaries of a company.
Path parameters
-
The Company ID given by Fipto.
Format should match the following pattern:
[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}
.
Query parameters
-
page_number number
The page number retrieved in the paginated results. The default value is 1.
-
page_size number
The number of items to include in each page of the paginated results. The default value is 100.
-
sort string
Value is
created_at
.
GET
/companies/{company_id}/beneficiaries
curl \
-X GET https://api.fipto.app/companies/9de0691c-bc8d-409b-8f40-75d4f45db2f3/beneficiaries
Response examples (200)
{
"meta": {
"request_id": "string",
"query_parameters": {}
},
"data": [
{
"id": "string",
"type": "beneficiary",
"attributes": {
"description": "string",
"wallet_details": {
"asset": "BTC",
"address": "0x71C*",
"name": "Acme - Payment Project X"
},
"beneficiary_info": {
"type": "individual",
"firstname": "Victor",
"lastname": "Duponthieu",
"address": {
"street_address": "25 rue François 1er",
"zip_code": "75008",
"city": "Paris",
"country_code": "FR"
}
}
}
}
]
}
Response examples (200)
{
"meta": {
"request_id": "string",
"query_parameters": {}
},
"data": [
{
"id": "string",
"type": "beneficiary",
"attributes": {
"description": "string",
"wallet_details": {
"asset": "BTC",
"address": "0x71C*",
"name": "Acme - Payment Project X"
},
"beneficiary_info": {
"type": "individual",
"firstname": "Victor",
"lastname": "Duponthieu",
"address": {
"street_address": "25 rue François 1er",
"zip_code": "75008",
"city": "Paris",
"country_code": "FR"
}
}
}
}
]
}