paperclip / ui /src /api /userProfiles.ts
cjovs's picture
Deploy Paperclip CN to Hugging Face Space
96e86e5
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`,
),
};