Get User Funding Account
Read on obtaining information on funding accounts added by a user
GET /users/{{user_id}}/funds?type={{funding_source_type}}
GET /users/{{user_id}}/funds?type={{funding_source_type}}curl --location -g --request GET '{{url}}/users/{{user_id}}/funds?type=BANK' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json'curl --location -g --request GET '{{url}}/users/{{user_id}}/funds?type=CARD' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json'GET /users/{{user_id}}/funds/{{fund_id}}
GET /users/{{user_id}}/funds/{{fund_id}}curl --location -g --request GET '{{url}}/users/{{user_id}}/funds/{{fund_id}}' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json'{
"id": UUID,
"user_id": UUID,
"account_number": "9991",
"funding_source_name": "VISA-9991",
"funding_source_type": "CARD",
"institution_name": "VISA",
"verification_status": "VERIFIED"
}Last updated