List Dashboard Users
string
“OK”
array
Array of dashboard user objects
string
Unique identifier for the dashboard user
string
Email address of the dashboard user
number
Timestamp when user was created (milliseconds since epoch)
Create Dashboard User
string
required
Email address for the new dashboard user (will be normalized and validated)
string
required
Password for the new dashboard user (must meet strength requirements)
string
“OK”, “INVALID_EMAIL_ERROR”, “PASSWORD_WEAK_ERROR”, or “EMAIL_ALREADY_EXISTS_ERROR”
object
Created dashboard user object
string
Additional message for PASSWORD_WEAK_ERROR status explaining requirements
Update Dashboard User
string
The user ID to update (either userId or email must be provided)
string
The email address to look up the user (either userId or email must be provided)
string
New email address (optional, will be normalized and validated)
string
New password (optional, must meet strength requirements)
string
“OK”, “INVALID_EMAIL_ERROR”, “PASSWORD_WEAK_ERROR”, “EMAIL_ALREADY_EXISTS_ERROR”, or “UNKNOWN_USER_ERROR”
object
Updated dashboard user object
string
Additional message for PASSWORD_WEAK_ERROR status
Delete Dashboard User
string
The user ID to delete (either userId or email must be provided)
string
The email address to look up and delete the user (either userId or email must be provided)
string
“OK”
boolean
Whether the user existed before deletion