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 details
const userResponse = await usersClient.getUser();
console.log(userResponse.data.name); // Outputs the user's name

Hierarchy

  • ApiClient
    • Users

Constructors

Properties

accessToken: string
baseUrl: string
OnError?: (error: DribbbleError) => void
rateLimitHandler?: (rateLimit: RateLimit) => void

Methods

  • Type Parameters

    • T

    Parameters

    • options: FetchOptions
    • needAccessToken: boolean = true

    Returns Promise<FetchResponse<T>>

  • Fetches details of the currently authenticated user.

    Returns Promise<FetchResponse<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