Merge branch 'IDTEAM-1.26.0' into 'main'
[ProtonMail-WebClient.git] / packages / shared / lib / api / verification.ts
blob7d9f40216516936716fc209114766667044f53c6
1 export const getVerificationDataRoute = (token: string, method: string) => ({
2     url: `core/v4/verification/${method}/${token}`,
3     method: 'get',
4 });
6 export const sendVerificationCode = (token: string, method: string) => ({
7     url: `core/v4/verification/${method}/${token}`,
8     method: 'post',
9 });
11 export const verifyVerificationCode = (token: string, method: string, code: string) => ({
12     url: `core/v4/verification/${method}/${token}/${code}`,
13     method: 'post',
14 });