Provides methods for interacting with user-related API endpoints.
This class extends ApiClient to interact with user-related endpoints, allowing you to fetch details about the currently authenticated user.
const usersClient = new Users();// Fetch user detailsconst userResponse = await usersClient.getUser();console.log(userResponse.data.name); // Outputs the user's name Copy
const usersClient = new Users();// Fetch user detailsconst userResponse = await usersClient.getUser();console.log(userResponse.data.name); // Outputs the user's name
Protected
Optional
Fetches details of the currently authenticated user.
A promise that resolves to a FetchResponse containing the authenticated User object.
const userResponse = await usersClient.getUser();console.log(userResponse.data.email); // Outputs the user's email Copy
const userResponse = await usersClient.getUser();console.log(userResponse.data.email); // Outputs the user's email
Provides methods for interacting with user-related API endpoints.
Remarks
This class extends ApiClient to interact with user-related endpoints, allowing you to fetch details about the currently authenticated user.
Example