Docs
Authentication

Authentication

HTTP Authentication, scheme: bearer

Create Auth Login

POST /v2/auth/login

Payload

"body": {
  "username": "username12345",
  "password": "password6789"
}
FieldDescriptionRequired
usernameString named after maximum of 255 characterstrue
passwordString named after maximum of 255 characterstrue

Responses

StatusMeaningDescription
200OKDefault Response
400Bad RequestBad Request
500Internal Server ErrorUnauthorized

This operation does not require authentication

Create Auth Refresh Token

POST /v2/auth/refresh-token

Payload

{
  "body": {
    "auth_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9",
    "refresh_token": "bmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxjfgjfkN"
  }
}
FieldDescriptionRequired
auth_tokenString named after maximum of 500 characterstrue
refresh_tokenString named after maximum of 500 characterstrue

Responses

StatusMeaningDescription
200OKDefault Response
400Bad RequestBad Request
500Internal Server ErrorUnauthorized

This operation does not require authentication