Users
/v1/usersCreate, retrieve, and manage user records tied to your organization.
- GET
/v1/usersList all users in your organization - GET
/v1/users/{id}Retrieve a single user by ID - POST
/v1/usersCreate a new user record - PUT
/v1/users/{id}Update role or profile fields
View example \u2014 POST /v1/users
Request
POST /v1/users\n{\n \"email\": \"[email protected]\",\n \"role\": \"admin\"\n}Response \u00b7 201
{\n \"id\": \"usr_8f2a1c\",\n \"email\": \"[email protected]\",\n \"role\": \"admin\",\n \"created_at\": \"2026-07-08T10:15:00Z\"\n}