Enroll Allow You to Add Multiple Emails For Each Customer
Last updated 11 months ago
You Can Add Or Delete New Email Or You Can Update Existing Email
After Adding Or Updating Phone You Must Send Otp To Verify New Phone
Success
const response = await fetch('/api/v1/update/UpdateRequest/VerifyPassword', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "status": 0 }
const response = await fetch('/api/v1/update/UpdateEmailInfo/GetApplicantEmails', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "id": 0, "email": "text", "isDefault": false } ]
const response = await fetch('/api/v1/update/UpdateEmailInfo/Add', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "id": 0 }
const response = await fetch('/api/v1/update/UpdateEmailInfo/Update', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
const response = await fetch('/api/v1/update/UpdateEmailInfo/SendOTP', { method: 'POST', headers: {}, }); const data = await response.json();
const response = await fetch('/api/v1/update/UpdateEmailInfo/ValidateOTP', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
const response = await fetch('/api/v1/update/UpdateEmailInfo/Archieve', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "ErrorCode": "text", "Message": "text" }