Authorization endpoints

This document contains the endpoints for the Authorization category.

Generates a token

/api/v1/auth/token Authorized

This endpoint generates a token

Parameters
Name Type In Required Description
login object body optional Body
Schema
{
  "email": "string",
  "password": "string"
}

Validates a token

/api/v1/auth/token/validate Authorized

This endpoint validates a token

Parameters
Name Type In Required Description
tokenRequest object body optional Body
Schema
{
  "token": "string"
}