Welcome to the User API documentation for the /en/API_Docs/users endpoint. This guide provides details on how to interact with the user-related API resources.

📌 Overview

The /users endpoint allows you to:

  • Retrieve user information
  • Manage user data
  • Access user-related endpoints

📌 Note: All operations require valid authentication credentials. For more details on authentication, see /en/API_Docs/auth.

📋 Request Methods

Method Description
GET Fetch user data
POST Create a new user
PUT Update existing user information
DELETE Remove a user

🧾 Parameters

For GET requests to /users:

  • id (optional): User identifier
  • username (optional): Search by username
  • email (optional): Search by email address

Example request:

GET /users?id=123 HTTP/1.1
Authorization: Bearer <token>

📦 Response Example

{
  "id": 123,
  "username": "john_doe",
  "email": "john@example.com",
  "created_at": "2023-01-15T10:00:00Z"
}

📎 Related Resources

user_profile