πŸ’ΈPayout (off ramp)

POST /bank-pro/payout/:customerId

Create a new destination bank account for off-ramp

Headers

Name
Value

Content-Type

application/json

x-join-key

api_token

join-session-id (optional)

customer_session_id

Params (body)

{
  fromWalletAddress: string
  fromWalletChain: string
  amountInCents: number
  destinationAccountId: string
}

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