🏦Get External Account by ID

GET /bank-pro/account/:customerId

Get all payout history

Headers

Name
Value

Content-Type

application/json

x-join-key

api_token

join-session-id (optional)

customer_session_id

Response

{
    id: string;
    type: string;
    name: string;
    referenceId: string;
    bank: {
      name: string;
      address: string;
      city: string;
      state: string;
      postalCode: string;
      country: string;
      iban: string;
      bic: string;
      owner: {
        name: string | null; // concat of firstName + lastName
        firstName: string | null; // only for individual
        lastName: string | null; // only for individual
        email: string;
        businessName: string | null; // only for business type
      };
    };
    createdAt: string;
    updatedAt: string;
    customerId: string;
  },
 {
    id: string;
    type: string;
    name: string;
    referenceId: string;
    wallet: {
      address: string;
      chain: string;
      isManaged: boolean 
    };
    createdAt: string;
    updatedAt: string;
    customerId: string;
  };

Last updated