Users
Authentication
Authorization
header. Ensure that you include a valid API key in your requests.Endpoints
1. Get Users
GET /users
Retrieves a list of users from the system. This endpoint supports pagination to handle large datasets efficiently.
limit
(integer, optional) – Specifies the maximum number of users returned per request.offset
(integer, optional) – Defines the starting point for retrieving users, allowing pagination.
2. Get Single User
GET /users/{userId}
Retrieves details of a specific user by their unique userId.
userId
(string, required) – The unique identifier of the user whose details are being fetched.