1 export const getVerificationDataRoute = (token: string, method: string) => ({
2 url: `core/v4/verification/${method}/${token}`,
6 export const sendVerificationCode = (token: string, method: string) => ({
7 url: `core/v4/verification/${method}/${token}`,
11 export const verifyVerificationCode = (token: string, method: string, code: string) => ({
12 url: `core/v4/verification/${method}/${token}/${code}`,