v1

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-25173140700.7 KB
User

Activate a user

Re-activate a user so they can authenticate again.

post/users/{user_id}/activate

Path parameters

user_idinteger required

ID of the user to activate.

ID of the user to activate.

Query parameters

cookie_namestring nullable
tenant_idinteger

Response

Successful Response

idinteger required

Unique identifier of the user.

created_atstring date-time required

UTC timestamp when the user was created.

emailstring email required

Current confirmed email address.

email_confirmedboolean required

Whether the email address has been confirmed.

pending_emailstring nullable

New email awaiting confirmation, or null if none pending.

namestring nullable

Full display name, if set.

first_namestring nullable

User's given name.

last_namestring nullable

User's family name.

adminboolean required

Whether the user has tenant administrator privileges.

superadminboolean nullable

Whether the user is a platform operator.

activeboolean required

Whether the account is active and can authenticate.

tenant_idinteger nullable

Identifier of the tenant the user belongs to.

Example response

{
  "id": 42,
  "created_at": "2026-01-15T09:30:00Z",
  "email": "jane.doe@example.com",
  "email_confirmed": true,
  "pending_email": "jane.new@example.com",
  "name": "Jane Doe",
  "first_name": "Jane",
  "last_name": "Doe",
  "active": true,
  "tenant_id": 1
}