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

Create a new user

POST
/users/
Usuarios
Create a new user in Momento

Request

Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Usuario creado exitosamente
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://pruebas.elmomento.io/integrations/users/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "user@example.com",
    "first_name": "string",
    "last_name": "string",
    "id": "string"
}'
Response Response Example
{
    "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 User
Next
Fetch Deposit orders (onboarding)
Built with