v1
latestOpenAPI 3.0.02026-08-067074272.5 KBUsers
Creates a new user
Creates a new user with the provided email address and password. This endpoint does not generate an email to send to the user. Users created through the web app get an auto-generated password emailed to them. Due to the password being a part of this endpoint's request body, this email is not necessary.
post/users
Request body
Example request
{
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@wefixwindows.com",
"password": "8aw5vm232b4xkjdr",
"external_user_id": "johndoe_1",
"permissions": [
{
"dashboard_id": 121,
"role": "manager"
}
]
}Response
The new user.
Example response
{
"id": 508,
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@wefixwindows.com",
"external_user_id": "johndoe_1",
"permissions": [
{
"dashboard_id": 121,
"role": "manager"
}
]
}