Skip to main content
POST
/
v1
/
users
/
create
Create User
curl --request POST \
  --url https://dev.api.mufi.app/v1/users/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "email": "[email protected]",
    "firstName": "<string>",
    "lastName": "<string>",
    "referenceId": "<string>"
  }
]
'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

A JWT Access Token obtained from Google Cloud.

Body

application/json

The request body must include a list of users, with a minimum of one and a maximum of 1500 users per request. Each user must have a unique email address. Optionally, you can include a reference ID to link the user to your database, as well as their first and last names.

Required array length: 1 - 1500 elements
email
string<email>
required
firstName
string | null
lastName
string | null
referenceId
string | null

Response

Created. Users have been created and are waiting wallet wallet creation in the background.

message
string
required