Conekta::PayoutOrderRequest

July 21, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
allowed_payout_methodsArray<String>The payout methods that are allowed for the payout order.
amountIntegerThe amount of the payout order.
currencyStringThe currency in which the payout order is made.[default to 'MXN']
customer_infoPayoutOrderRequestCustomerInfo
expires_atIntegerThe expiration time of the payout order in Unix timestamp.
metadataHash<String, Object>The metadata of the payout order.[optional]
payoutPayout
reasonStringThe reason for the payout order.

Example

require 'conekta'

instance = Conekta::PayoutOrderRequest.new(
  allowed_payout_methods: [cashout],
  amount: 100,
  currency: MXN,
  customer_info: null,
  expires_at: 1700000000,
  metadata: {custom_client_id&#x3D;12345},
  payout: null,
  reason: Payout order for the customer
)