File size: 293 Bytes
8b61324 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import API from "./api";
export const getVapiConfig = async (
name: string,
jobRole: string,
experience: number,
level: string
) => {
const response = await API.post("/interview/config", {
name,
job_role: jobRole,
experience,
level,
});
return response.data;
};
|