📖
Inyo Developer Portal
  • API REFERENCES
    • Payments Gateway v2
      • Getting started
      • Background
        • System architecture
        • Gateway environment settings
      • Authentication Methods
      • Environments
      • Technical Resources
      • Mitigating Fraud
      • APIs
        • Tokenizing cards
        • Payment
          • Pull Transaction
            • Handling AVS / CVC
            • Handling 3D secure
          • Push Transaction
          • Pull and push in one step
          • Capture
          • Refund
          • Void
          • Get a payment
          • Get a list
        • Webhooks
        • Domain tables
          • Response Code
          • Payment Status
        • Test data
          • Cards
    • Remittances
      • Getting Started
      • Authentication
      • Data Population
        • Country
        • State
        • Banks
        • Payers
        • Settlement Rates
      • Sender
        • Sender Object
        • Register a Sender
        • User Agreement
        • Get Sender by ID
        • Sender Verification
          • ID Documents
            • Expired ID Documents
          • KYC Status
          • KYC Using Widget
          • KYC Using API
            • Get KYC fields
            • Update KYC Information
            • Initiate KYC
            • Get KYC Information
          • Sender Tier Upgrade
        • Sender ID Information
      • Funding Account
        • Add Funding Account
          • OAuth Integration
        • Funding Account Object
        • Get Funding Account
        • Delete Funding Account
      • Recipient
        • Recipient Object
        • Add a Recipient
        • Get Recipient Details
        • Update Recipient
        • Recipient Document
      • Recipient Account
        • Recipient Account Object
        • Add a Recipient Account
        • Get Recipient Account
        • Get Account Information
      • Transaction
        • Transaction Object
        • Get Transaction Limits
        • Create a Transaction
          • 3DS Verification
          • Bonus/Discount
        • Get Transaction Details
        • Cancel Transaction
        • Delivery Request
        • Self-Payout
        • Transaction Invoice
      • Webhooks
        • Subscriptions
          • Subscribe
          • List Subscriptions
          • Pause Subscriptions
          • Remove Subscription
        • Integration
        • Events
      • Widget
        • Widget v1.0
          • Widget v1.0 Types
        • Widget v2.0
      • SANDBOX
        • Test Values
          • Geo-Fencing
          • Sender Verification
          • Funding Account
          • Transaction
  • USE CASE
    • Remittance
Powered by GitBook
On this page
  1. API REFERENCES
  2. Remittances
  3. Funding Account

Get Funding Account

Read on obtaining information on funding accounts added by a user

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

senderId

Yes

UUID

Sender ID.

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"
     }
  ]
}

For fetching all accounts according to funding source type, you can pass a query parameter.

For banks, GET /v2/senders/{{senderId}}/funding-sources?type=BANK

For cards, GET /v2/senders/{{senderId}}/funding-sources?type=CARD

Get funding account by ID

You can get details of a particular funding account of a sender.

GET /v2/senders/{{senderId}}/funding-sources/{{fundingAccountId}}

Field
Required
Type
Description

senderId

Yes

UUID

Sender ID.

fundingAccountId

Yes

UUID

Funding Account ID.

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"
        }
    ]
}
PreviousFunding Account ObjectNextDelete Funding Account

Last updated 9 months ago