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 '[
  {
    "firstName": "<string>",
    "lastName": "<string>",
    "email": "jsmith@example.com",
    "referenceId": "<string>"
  }
]'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

A JWT Access Token obtained from Google Cloud.

Body

application/json · object[]

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.

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