Last updated 1 year ago
Successful operation
Successful Operation
201
const response = await fetch('/auth/register', { method: 'POST', headers: { "Authorization": "Bearer JWT" }, }); const data = await response.json();
{ "statusCode": 201 }
const response = await fetch('/auth/verification-email', { method: 'POST', headers: { "Authorization": "Bearer JWT" }, }); const data = await response.json();
{ "statusCode": 201, "data": { "retryCount": 1, "maxRetryCount": 3 } }