Momento Business API
  1. Deposits.
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. Deposits.

Fetch Deposit orders (onboarding)

GET
/deposit_orders/
Depósitos
Get deposit(s) status

Request

Query Params

Responses

🟢200OK
application/json
Respuesta exitosa
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://pruebas.elmomento.io/integrations/deposit_orders/?email&external_order_id'
Response Response Example
{
    "count": 0,
    "next": "string",
    "previous": "string",
    "results": [
        {
            "id": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
            "provider_user": 1,
            "amount": "100.00",
            "country": "DO",
            "status": "pending",
            "exchange_rate": "58.5000000",
            "bank_ref": "REF-98765",
            "external_order_id": "ORD-ABCDE",
            "created_date": "2024-01-01T12:00:00Z",
            "modified_date": "2024-01-01T12:00:00Z"
        }
    ]
}
Previous
Create a new user
Next
Create deposit order
Built with