Authentication
HTTP Authentication, scheme: bearer
Create Auth Login
POST /v2/auth/login
Payload
"body": {
"username": "username12345",
"password": "password6789"
}| Field | Description | Required |
|---|---|---|
| username | String named after maximum of 255 characters | true |
| password | String named after maximum of 255 characters | true |
Responses
| Status | Meaning | Description |
|---|---|---|
| 200 | OK | Default Response |
| 400 | Bad Request | Bad Request |
| 500 | Internal Server Error | Unauthorized |
This operation does not require authentication
Create Auth Refresh Token
POST /v2/auth/refresh-token
Payload
{
"body": {
"auth_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9",
"refresh_token": "bmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxjfgjfkN"
}
}| Field | Description | Required |
|---|---|---|
| auth_token | String named after maximum of 500 characters | true |
| refresh_token | String named after maximum of 500 characters | true |
Responses
| Status | Meaning | Description |
|---|---|---|
| 200 | OK | Default Response |
| 400 | Bad Request | Bad Request |
| 500 | Internal Server Error | Unauthorized |
This operation does not require authentication