Last updated 1 year ago
Success
const response = await fetch('/api/v1/onboarding/SecurityQuestionsInfo', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "id": 0, "question": "text" } ]
const response = await fetch('/api/v1/onboarding/SecurityQuestionsInfo', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify([ {} ]), }); const data = await response.json();
{ "ErrorCode": "text", "Message": "text" }