Skip to main content
GET
https://apis.hopnow.io
/
v1
/
accounts
/
{account_id}
/
beneficiaries
/
{beneficiary_id}
/
payout-destinations
/
{destination_id}
Get Payout Destination
curl --request GET \
  --url https://apis.hopnow.io/v1/accounts/{account_id}/beneficiaries/{beneficiary_id}/payout-destinations/{destination_id} \
  --header 'Authorization: Bearer <token>'

Path Parameters

account_id
string
required
The account’s external ID (starts with acc_)
beneficiary_id
string
required
The beneficiary’s external ID (starts with ben_)
destination_id
string
required
The payout destination’s external ID (starts with dest_)

Response

Returns the same structure as Create Payout Destination response.

Response Example

{
  "id": "dest_1234567890abcdef",
  "object": "payout_destination",
  "beneficiary_id": "ben_1234567890abcdef",
  "country": "US",
  "payout_method": "ach",
  "type": "bank_account",
  "label": null,
  "currency": "USD",
  "network": null,
  "status": "active",
  "account_number_last4": "7890",
  "routing_number": "021000021",
  "account_type": "checking",
  "is_default": true,
  "created": "2024-01-15T10:00:00Z",
  "updated": "2024-01-15T10:00:00Z"
}