This endpoint provides access to user data through the SDK. Use it to retrieve user information securely.

Request Method & Path

  • Method: GET
  • Path: /en/sdk/get-users

Parameters

Parameter Type Description
token string Authentication token (required)
format string Response format (json or xml, default: json)

Response Example

{
  "users": [
    {"id": 1, "name": "Alice", "email": "alice@example.com"},
    {"id": 2, "name": "Bob", "email": "bob@example.com"}
  ]
}

Tips for Developers

  • Always validate the token before processing requests ✅
  • Check the SDK documentation home for full API details 📖
  • Use format=json for easier integration with frontend frameworks 🚀
user_profile
[Explore more SDK endpoints](/en/sdk) to enhance your integration! 🌐