File size: 299 Bytes
96e86e5 | 1 2 3 4 5 6 7 8 9 10 | import type { UserProfileResponse } from "@penclipai/shared";
import { api } from "./client";
export const userProfilesApi = {
get: (companyId: string, userSlug: string) =>
api.get<UserProfileResponse>(
`/companies/${companyId}/users/${encodeURIComponent(userSlug)}/profile`,
),
};
|