πŸ“œGet all Payout(s)

GET /bank-pro/payout/: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;
  referenceId: string;
  customerId: string;
  createdAt: string; // ISO date string
  updatedAt: string; // ISO date string
  status: string 
  protocolFeeAmountInCents: number;
  source: {
    amountInWei: string;
    currency: string;
    currencyAddress: string;
    currencyChain: string;
    fromAddress: string;
    accountId: string;
  };
  destination: {
    accountId: string;
    currency: string;
  };
  fundingInstructions: {
    fromAddress: string;
    toAddress: string;
    amountInWei: string;
    currency: string;
    currencyAddress: string;
    currencyChain: string;
  };
};

Last updated