Last updated 11 months ago
Success
const response = await fetch('/api/v1/authentication/PhoneOtpAuthentication/SendPhoneOtp', { method: 'GET', headers: {}, }); const data = await response.json();
{ "status": 0 }
const response = await fetch('/api/v1/authentication/PhoneOtpAuthentication/VerifyPhoneOtp', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();