v51

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-01703301564.3 KB
Users

List all users in organization

Returns all users belonging to the authenticated user's organization, ordered by created_at DESC, id ASC. Password hashes are excluded.

get/users

Response

Users found

messagestring

Example response

{
  "message": "OK",
  "data": [
    {
      "id": 1,
      "name": "John",
      "surname": "Doe",
      "email": "john@example.com",
      "role_id": 1,
      "organization_id": 1
    }
  ]
}
All 703 operations