API referenceUsers
`POST /users` — create a user in the org.
POST
/usersRequest Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/users" \ -H "Content-Type: application/json" \ -d '{ "email": "string" }'{ "avatar": "string", "created_at": "string", "email": "string", "id": "string", "is_admin": true, "kind": "native", "last_login_at": "string", "name": "string", "org_id": "string", "provisioned_by": "string", "role": null, "status": null, "status_unrecognized": "string", "team_ids": [ "string" ], "updated_at": "string"}`GET /templates` — list all built-in templates in registry order. Authenticated (any valid session) but **scope-free**: the static built-in catalog carries no tenant data, so it takes `AuthContext` to require a login and performs no grant/scope check. GET
Previous Page
`DELETE /users/{id}` — remove a user from the org. DELETE
Next Page