๐Ÿ”Obtaining JWT

A simple POST request to

{BASE_URL}/auth/api/v1/login/dash/auth with request Body

{ "email": "string", "password": "string" }

If the username and password are correct, you shall get the JWT in the response body with a status code 200 in the following format.

{ "jwt": "string" }

For any incorrect credentials, you will get 403 as the Response Code

Last updated

Was this helpful?