Authentication
API Authorization Documentation
The API Authorization includes endpoints for generating and refreshing JWT tokens. These endpoints are essential for secure and authenticated access to other API functionalities.
1. Generate JWT Token
Endpoint:
Description:
Generates a JWT token for a specified application. The token includes an accessToken
and a refreshToken
, which can be used for authentication and token refresh operations.
Request Headers:
Content-Type: application/json; x-api-version=1.0
Accept: application/json
Request Body:
Field
Type
Description
applicationId
string
The unique identifier (UUID) of the application.
jwtPrivateKey
string
The private key used to sign the JWT.
Response:
Status 200 OK
Field
Type
Description
applicationId
string
The unique identifier (UUID) of the application.
accessToken
string
The JWT access token for authentication.
accessTokenExpiration
datetime
Expiration date and time for the accessToken
.
refreshToken
string
Token used to obtain a new accessToken
without logging in again.
refreshTokenExpiration
datetime
Expiration date and time for the refreshToken
.
Error Responses:
Status 400 Bad Request
Invalid input data or missing required fields.
Status 500 Internal Server Error
Server-side error during token generation.
2. Refresh JWT Token
Endpoint:
Description:
Refreshes an expired JWT access token using a valid refreshToken
.
Request Headers:
Content-Type: application/json; x-api-version=1.0
Accept: application/json
Request Body:
Field
Type
Description
applicationId
string
The unique identifier (UUID) of the application.
jwtPrivateKey
string
The private key used to sign the JWT.
refreshToken
string
The token used to refresh the expired access token.
Response:
Status 200 OK
Field
Type
Description
applicationId
string
The unique identifier (UUID) of the application.
accessToken
string
The refreshed JWT access token for authentication.
accessTokenExpiration
datetime
Expiration date and time for the refreshed accessToken
.
refreshToken
string
Token used to obtain another new accessToken
if necessary.
refreshTokenExpiration
datetime
Expiration date and time for the new refreshToken
.
Error Responses:
Status 400 Bad Request
Invalid input data or missing required fields.
Status 401 Unauthorized
Invalid or expired refresh token.
Status 500 Internal Server Error
Server-side error during token refresh.
Last updated