Documentation
  • Welcome!
  • Card (server to server)
    • Overview
      • Authentication
      • Process Flow
      • API Endpoints
      • Testing
    • API Commands
      • 700 – Start Credit Card charge (3DS Enabled)
      • 701 – Request Capture Authorization
      • 702 – Request Cancel Authorization
      • 708 – Check transaction details
      • 709 – Check transaction status
      • 720 – Credit Request
      • 756 – Manual Rebill Request
      • 760 – Request Refund
    • Notifications
      • Notifications
      • 850 – Transaction state Notification
      • 860 – Refund Notification
      • 880 – Dispute Notification
    • Transaction Status Codes
    • 3D Secure Integration
  • APM Checkout (Blik)
    • Overview
      • Process Flow
      • Testing
    • Errors
      • Error object
      • Errors type list
      • Decline errors code list
    • Create a checkout session
    • Retrieve a Checkout Session
    • Webhoook Event Notification
    • Pay a Checkout Session
  • Refund a Checkout Session
  • Retrieve checkout session refund
  • Wallet API
    • Introduction
      • Authentication
      • Metadata
    • Errors
      • Error object
      • Errors type list
      • Decline errors code list
    • Payout
      • Create a payout
      • Retrieve a payout
  • Wallet payment page
    • Payment Page
Powered by GitBook
On this page
  1. Token API
  2. Bank Account

Retrieve Bank Account

By default you can see the 10 most recent sources stored on a customer directly on the object, but you can also retrieve details about specific bank account stored on the api.

GET /v1/customers/:id/sources/:id

curl https://{provided url}/v1/customers/P2ZTA56JQ7-AvwGf0pHd2Q/sources/TlnNDVS6TteSn2-FEh3ZKg \
  -u sk_test_yFStF-KUmgr-7CoumuY2JA:

This request should return a JSON response with the structure:

{
	"id": "TlnNDVS6TteSn2-FEh3ZKg",
	"account_holder_name": "John Doe",
	"account_holder_type": "individual",
	"country": "PL",
	"currency": "EUR",
	"customer": "P2ZTA56JQ7-AvwGf0pHd2Q",
	"fingerprint": "R1gbK7BauiX3XdnUCQRhzlnvMxxtSKVS7NqScFBeVRE",
	"last4": "6784",
	"routing_number": "110000000",
	"swift_code": "PPABPLPK",
	"status": "new",
	"type": "bank_account"
}

Returns

Returns the bank account object.

Last updated 3 months ago