ZINC API
HomeSign InSupport
HomeSign InSupport
  1. Accounts
  • API Reference
  • Authentication
    • Get Access token
      GET
  • Core Resources
    • Accounts
      • Create Account
        POST
      • Get Account
        GET
      • Update Account
        POST
      • Get Account Balance
        GET
      • Submit Account For Activation
        POST
      • Get Account Transactions
        GET
      • Get Account Supported Currencies
        GET
      • Get Account Beneficiaries
        GET
    • Beneficiary
      • Add Beneficiary
      • Get Beneficiaries
      • Delete Beneficiary
    • Currency Accounts
      • Create Currency Account
      • Get Currency Account Details
    • Payouts
      • Create Payout
      • Get Payouts For Account
    • Cards
      • Simulation
        • Simulate Card Transaction
      • Create Card
      • Get Card Details
      • Update Transaction Limits
      • Update Cards Status
      • Get Card Transactions
    • Conversions
      • Create Conversion
      • Get Quote
    • Services
      • Upload File
  1. Accounts

Get Account Beneficiaries

GET
/api/account/{id}/beneficiary

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
id
string 
required
Header Params
x-api-version
string 
optional

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-sandbox.z.inc/api/account//beneficiary' \
--header 'x-api-version;'

Responses

🟢200Success
application/json
Body
object {0}
Example
{
    "has_more": false,
    "items": [
        {
            "beneficiary": {
                "additional_info": {
                    "personal_email": "paul.walker@gmail.com"
                },
                "address": {
                    "city": "Singapore",
                    "country_code": "SG",
                    "postcode": "541298",
                    "street_address": "BLK 241A COMPASSVALE STREET #02-143"
                },
                "bank_details": {
                    "account_currency": "SGD",
                    "account_name": "John Walker",
                    "account_number": "1707625311",
                    "bank_country_code": "SG",
                    "bank_name": "DBS BANK LTD",
                    "swift_code": "DBSSSGSG"
                },
                "date_of_birth": "2000-01-01",
                "entity_type": "PERSONAL"
            },
            "beneficiary_id": "0447b120-7325-4b4b-b919-f9c06ba6b0b0",
            "nickname": "Complete Concrete Pty Ltd",
            "payer_entity_type": "COMPANY",
            "payment_methods": [
                "SWIFT"
            ]
        }
    ],
    "total_count": 1
}
Modified at 2024-07-28 08:08:25
Previous
Get Account Supported Currencies
Next
Add Beneficiary