curl --request GET \
--url https://api.example.com/v1/cases/{case_id}/bank-accounts/{account_id}/beneficiaries \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "01K6AB05EJ3T10HRYE78AN7BCD",
"name": "John Jonas Johnson",
"relationship": "son",
"percentage_share": 50,
"designation_type": "pod",
"is_contingent": false,
"contact_info": {
"email": "jsmith@example.com",
"phone": "<string>",
"address": {
"address1": "123 Main Street",
"address2": null,
"city": "Salt Lake City",
"state": "UT",
"zip": "84101"
}
},
"status": "active",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
]
}List all POD (Payable on Death) and TOD (Transfer on Death) beneficiary designations.
curl --request GET \
--url https://api.example.com/v1/cases/{case_id}/bank-accounts/{account_id}/beneficiaries \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "01K6AB05EJ3T10HRYE78AN7BCD",
"name": "John Jonas Johnson",
"relationship": "son",
"percentage_share": 50,
"designation_type": "pod",
"is_contingent": false,
"contact_info": {
"email": "jsmith@example.com",
"phone": "<string>",
"address": {
"address1": "123 Main Street",
"address2": null,
"city": "Salt Lake City",
"state": "UT",
"zip": "84101"
}
},
"status": "active",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
List of beneficiaries.
Show child attributes