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

Get User

GET
/users/
Usuarios
Query user data in Momento.

Request

Query Params

Responses

🟢200OK
application/json
Usuario encontrado
Body

🟠404Record Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://pruebas.elmomento.io/integrations/users/?email'
Response Response Example
200 - Example 1
{
    "data": {
        "id": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
        "first_name": "Juan",
        "last_name": "PƩrez",
        "email": "juan.perez@example.com",
        "is_active": true,
        "provider_user_id": "USR-12345"
    },
    "success": true
}
Previous
Get USD quotes
Next
Create a new user
Built with