This endpoint allows you to retrieve detailed information about a specific user. 🧾
📌 Endpoint Details
- Method:
GET
- Path:
/users/get_user_info
- Description: Fetch user data by providing a valid user ID.
- Authentication: Requires API key in the request headers
📦 Request Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id |
string |
✅ Yes | The unique identifier of the user |
fields |
array |
❌ No | Specify which fields to include (e.g., ["name", "email"] ) |
📄 Response Example
{
"user": {
"id": "12345",
"name": "John Doe",
"email": "john@example.com",
"created_at": "2023-01-15T10:00:00Z"
},
"status": "success"
}
🛠️ Tips
- Use
fields
to customize the response payload - Check out our API Guide for more details on request formatting
- 📌 Always validate input parameters before making requests
For advanced usage, explore the User Management Endpoints section.