feat: fetch profile API

This commit is contained in:
2025-05-28 17:40:33 +02:00
parent 2187c873ee
commit a1ed1113d9

29
web/src/api/profile.ts Normal file
View File

@ -0,0 +1,29 @@
import { handleApiError } from ".";
export interface FetchProfileResponse {
full_name: string;
email: string;
phone_number: string;
isAdmin: boolean;
last_login: string;
profile_picture: string | null;
updated_at: string;
created_at: string;
}
export const fetchProfileApi = async (accessToken: string) => {
const response = await fetch("/api/v1/oauth/code", {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${accessToken}`,
},
});
if (response.status !== 200 && response.status !== 201)
throw await handleApiError(response);
const data: FetchProfileResponse = await response.json();
return data;
};