Last updated 5 months ago
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/UpdateSecurityQuestionsInfo/GetActiveSecurityQuestionsDropdown', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "id": 0, "question": "text" } ]
const response = await fetch('/api/v1/update/UpdateSecurityQuestionsInfo/Update', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify([ {} ]), }); const data = await response.json();