Get list of all funding accounts
You can view all the fundings accounts added by a sender.
GET /v2/senders/{{senderId}}/funding-sources
Field
Required
Type
Description
curl -X GET {{url}}/v2/senders/{{senderId}}/funding-sources \
-H 'Accept: application/json' \
-H 'X-Client-Id: clientid' \
-H 'X-Client-Secret: clientsecret'
{
"result": [
{
"id": "string",
"sender_id": "string",
"funding_source_name": "string",
"institution_name": "string",
"account_type": "string",
"account_holder_name": "string",
"verification_status": "string",
"funding_source_type": "BANK"
} ,
{
"id": "string",
"sender_id": "string",
"nick_name": "string",
"funding_source_name": "string",
"institution_name": "string",
"funding_source_type": "CARD",
"regulated": false,
"network": "string",
"avs_code": "Y",
"duplicate_flagged": true,
"expiry_status": "ACTIVE",
"card_type": "DEBIT"
}
]
}
You can get details of a particular funding account of a sender.
GET /v2/senders/{{senderId}}/funding-sources/{{fundingAccountId}}
Field
Required
Type
Description
curl -X GET {{ul}}/v2/senders/{{senderId}}/funding-sources/{{fundingSourceId}} \
-H 'Accept: application/json' \
-H 'X-Client-Id: clientid' \
-H 'X-Client-Secret: clientsecret'
Bank
{
"id": "string",
"sender_id": "string",
"funding_source_name": "string",
"institution_name": "string",
"account_type": "string",
"account_holder_name": "string",
"verification_status": "string",
"funding_source_type": "BANK"
}
Card
{
"id": "string",
"sender_id": "string",
"nick_name": "string",
"funding_source_name": "string",
"institution_name": "string",
"funding_source_type": "CARD",
"regulated": false,
"network": "string",
"avs_code": "Y",
"expiry_status": "EXPIRING_SOON",
"card_type": "DEBIT",
"duplicate_flagged": true,
"duplicate_reasons": [
"string"
],
"duplicate_account_info": [
{
"sender_id": "string",
"sender_name": "string",
"funding_account_id": "string",
"funding_account_name": "string"
}
]
}