Creates a sub-user for the account. Limited to 10 new users per account per hour.
Request
Add parameter in header API-key
Example:API-key: ********************
Body Params application/jsonRequired
{"email":"sub@example.com","firstname":"Sub","lastname":"User","password":"Secret1!","password_confirm":"Secret1!","permissions":{"domains":true}}
Request Code Samples
curl --location --request POST 'https://mijn.host/api/v2/account/users/' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{"email":"sub@example.com","firstname":"Sub","lastname":"User","password":"Secret1!","password_confirm":"Secret1!","permissions":{"domains":true}}'
Responses
application/json {
"status": 0,
"status_description": "string",
"data": {
"id": 0
}
}
Modified at 2026-04-09 12:56:00