Get Beneficiary Details

GET /beneficiary/{id}

Returns details for a specific beneficiary.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Response

{
    "statusCode": 200,
    "statusMessage": "Request successful",
    "payload": {
        "id": "9361b0f7-8c8a-486f-bc53-cfda39acbc98",
        "name": "Beneficiary Name",
        "type" : 0,
        "addressLine1": "Address Line 1", 
        "addressLine2": "Address Line 2",
        "country": "Country ISO Code",
        "city": "City",
        "postalCode": "XXXXXX",
        "iban": "...",
        "bic": "...",
        "metadata": {
            "type": "beneficiary",
        },
        "traceId": "gdlyfx1kn79mm0e66an",
    }
}

Last updated