1. users
Autonomk
  • users
    • Get all users
      GET
    • Create User
      POST
    • Delete user
      DELETE
    • Get single user
      GET
    • Update User
      PUT
  • auth
    • Login
      POST
    • refresh token
      POST
    • Logout
      POST
  • chat
    • Chat
      POST
  • sessions
    • Get all logged in sessions
      GET
    • Delete logged in token
      DELETE
  • conversations
    • Get single conversation with chat messages
      GET
    • Get list of all conversations
      GET
    • Create Conversation History
      POST
    • Delete Conversation History
      DELETE
    • Update the conversation properties
      PATCH
    • insert chat into conversation
      PATCH
  • Untitled Endpoint
    POST
  1. users

Get all users

Developing
Development
http://localhost:8080/api/v0
Development
http://localhost:8080/api/v0
GET
http://localhost:8080/api/v0
/users
Admin: Get list of all users

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200Success
application/json
Will return a list of all users.
Bodyapplication/json

🟠403Forbidden
🟠401Unathorized
🟠422Unprocessable Entity
🟠404Not found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'http://localhost:8080/api/v0/users' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
[
    {
        "username": "Clifton.Keebler",
        "firstName": "Clifton",
        "lastName": "Keebler",
        "email": "Clifton.Keebler@gmail.com",
        "id": "Clifton.Keebler"
    }
]
Modified at 2025-06-16 14:08:23
Next
Create User
Built with