API Reference
post
Authorizations
Responses
201
Successful operation
application/json
ResponseanyExample:
{"statusCode":201}
401
Failed because the authentication token was not sent or it has already expired.
application/json
409
It already exists a user with this info
application/json
post
POST /auth/register HTTP/1.1
Host:
Authorization: Bearer JWT
Accept: */*
{
"statusCode": 201
}
post
Authorizations
Responses
201
Successful Operation
application/json
401
Failed because the authentication token was not sent or it has already expired.
application/json
422
The maximum number of email verification requests has been exceeded.
application/json
post
POST /auth/verification-email HTTP/1.1
Host:
Authorization: Bearer JWT
Accept: */*
{
"statusCode": 201,
"data": {
"retryCount": 1,
"maxRetryCount": 3
}
}
Last updated
Was this helpful?