Ajo-API
Handling Errors
When a field is required and it is not supplied, the database throws an error of the form { "error": [ "Name is required." ]}
For most endpoints, there is a validator to return the error in the form { error: "Name is required." }
Basically you may have to access the error as an array very few times e.g response.error[0]
at other times response.error
Look at individual endpoints to see how errors are returned.
Email Verification
Some endpoints require users to be verified to use them. If user is not verified, error is returned in the form { "error": [ "Please verify your email to use this service" ]}
as you will see in the "submit review" endpoint below.
AUTHORIZATIONBearer Token
Token
Auth
AUTHORIZATIONBearer Token
This folder is using Bearer Token from collectionAjo-API
POSTRegister user
localhost:4000/api/auth/signup
AUTHORIZATIONBearer Token
This request is using Bearer Token from collectionAjo-API
Bodyraw (json)
Example Request
Register user
200 OK
Example Response
X-Powered-By
Content-Type
Content-Length
ETag
Date
Connection
Keep-Alive
POSTLogin user
localhost:4000/api/auth/signin
AUTHORIZATIONBearer Token
This request is using Bearer Token from collectionAjo-API
Bodyraw (json)
Example Request
Login user
200 OK
Example Response
X-Powered-By
Set-Cookie
Content-Type
Content-Length
ETag
Date
Connection
Keep-Alive