Docs/Integration routes/Authentication routes

Authentication routes

Getting the access token and manipulating the user

Sign in


POST/api/v1/sign-in

This route is to the members ( who you registered ), do the login in your application.

{ email: string, password: string }

Response 200


{ access_token: string }

Sign up


POST/api/v1/sign-up

This route is to register new members and retrieve the access token.

{ name: string, email: string, password: string, username?: string, observations?: string }

Response 200


{ access_token: string }