POST
/
v1
/
users
/
create
curl --request POST \
  --url https://dev.api.mufi.app/v1/users/create \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '[
  {
    "firstName": "<string>",
    "lastName": "<string>",
    "email": "jsmith@example.com",
    "referenceId": "<string>"
  }
]'
{
  "message": "<string>"
}

Authorizations

x-api-key
string
header
required

The API Key you were given in the developer portal. API keys are associated with your organization's project application and can have read or write permissions and an optional expiration date.

Body

application/json · object[]
The request body must include a list of users, with a minimum of one and a maximum of 1000 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
required
firstName
string | null
lastName
string | null
referenceId
string | null

Response

201
application/json
Created. Users have been created and are waiting wallet wallet creation in the background.
message
string
required