Momento Business API
  1. Withdrawals (offboarding)
Momento Business API
  • Intro
  • Public endpoints
    • Get onboarding bank accounts
      GET
    • Get USD quotes
      GET
  • Users
    • Get User
      GET
    • Create a new user
      POST
  • Deposits.
    • Fetch Deposit orders (onboarding)
      GET
    • Create deposit order
      POST
  • Withdrawals (offboarding)
    • Fetch withdrawal orders
      GET
    • Create a withdrawal order
      POST
    • Withdrawal banks list
      GET
  • Schemas
    • Schemas
      • Bank
      • User
      • Price
      • DepositOrder
      • WithdrawalOrder
    • Deposit Bank
    • User Schema
  1. Withdrawals (offboarding)

Create a withdrawal order

POST
/withdrawal_orders/
Retiros

Request

Body Params application/json

Examples

Responses

🟱201Created
application/json
Orden de retiro creada
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://pruebas.elmomento.io/integrations/withdrawal_orders/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "Leonie_Ferry@gmail.com",
    "amount": "483.59",
    "tx_id": "csdesvkusho4hj48h889whnoq34093jrf",
    "external_order_id": "86",
    "bank_name": "Banreservas",
    "bank_account_number": "41839542",
    "bank_account_owner_name": "Debra Jakubowski",
    "bank_account_owner_identity": "402-211111-6",
    "country": "PE",
    "notes": "Ut commodo elit veniam",
    "is_usd": false,
    "image_data": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAMAAABrrFhUAAAAA1BMVEWsyPIniFeoAAAAVElEQVR4nO3BAQEAAACAkP6v7ggKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAEPAAFN9soGAAAAAElFTkSuQmCC"
}'
Response Response Example
{
    "id": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
    "amount": "0.00250000",
    "country": "DO",
    "tx_id": "0x...",
    "status": "pending_crypto",
    "external_order_id": "ORD-FGHIJ",
    "bank_name": "Banco Popular",
    "bank_account_number": "123456789",
    "bank_account_number_cci": "string",
    "bank_account_type": "string",
    "bank_account_owner_name": "Juan Pérez",
    "bank_account_owner_identity": "001-1234567-8",
    "exchange_rate": "59.00",
    "notes": "Retiro de ganancias",
    "created_date": "2024-01-01T12:00:00Z",
    "modified_date": "2024-01-01T12:00:00Z"
}
Previous
Fetch withdrawal orders
Next
Withdrawal banks list
Built with