This page provides an overview of the users API endpoint /en/api-docs/users
on our website.
Endpoint Description
The /en/api-docs/users
endpoint is designed to provide access to user-related information. It allows you to retrieve details about users, including their profiles and activity logs.
Usage
To access the users API, make a GET request to the following URL:
GET /en/api-docs/users
Query Parameters
user_id
(optional): The ID of the user you want to retrieve information for. If not provided, the endpoint will return information for all users.
Response
The response will be a JSON object containing user information. Here's an example:
{
"users": [
{
"id": "12345",
"name": "John Doe",
"email": "john.doe@example.com",
"role": "admin",
"created_at": "2021-01-01T12:00:00Z"
},
{
"id": "67890",
"name": "Jane Smith",
"email": "jane.smith@example.com",
"role": "user",
"created_at": "2021-02-01T12:00:00Z"
}
]
}
Additional Resources
For more information on our API, please refer to our API Documentation.