User endpoints
Create a new user
POST
Authorizations
Body
application/json
The user's first name
Required string length:
1 - 255
Example:
"Alice"
The user's last name
Required string length:
1 - 255
Example:
"Smith"
The user's email address
Example:
"alice@company.com"
A list of role ids
Example:
["Admin,", "Standard", "ReadOnly"]
Response
201
application/json
User created successfully
The unique identifier for the user
The user's first name
Example:
"John"
The user's last name
Example:
"Doe"
The user's email address
Example:
"john@company.com"
A list of role ids
Example:
["ReadOnly", "Standard"]
A map of login methods to their last login timestamps (Unix epoch).
Example:
{
"Okta": 1731370728,
"Password": 1731338939
}
A map of key value pairs associated with this log
Example:
{
"region": "eu",
"environment": "production"
}