Our API uses JSON Web Tokens (JWTs) for authentication. JWTs are a secure and efficient way to authenticate users.
To authenticate with our API, users must first create an account. Once they have created an account, they can generate a JWT by providing their username and password.
JWTs are signed with a secret key, which ensures that they are tamper-proof. They also contain an expiration date, which helps to prevent them from being used after they have expired.
To authenticate with our API, users must include their JWT in the Authorization header of their HTTP requests. The format of the Authorization header is as follows:
Authorization: Bearer <jwt>
where <jwt> is the JWT token.
Once the API has verified the JWT, it will grant the user access to the resources that they are authorized to access.
Login
POST{{BASE_URL}}/api/login
User authentication via email and password fields.