Get Receive Accounts

Read on obtaining information on added receive accounts

Get list of receive accounts

You can fetch all the receive accounts created under a receive user.

GET /users/{{user_id}}/receive-users/{{receive_user_id}}/accounts

curl --location -g --request GET '{{url}}/users/{{user_id}}/receive-users/{{receive_user_id}}/accounts' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json'

Get receive account by ID

You can fetch details of a particular receive user account linked to a receive user.

GET /users/{{user_id}}/receive-users/{{receive_user_id}}/accounts/{{receive_user_account_id}}

curl --location -g --request GET '{{url}}/users/{{user_id}}/receive-users/{{receive_user_id}}/accounts/{{receive_user_account_id}}' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json'

Last updated