Authentication
Authentication
Authenticate with Username and Password
API Key required
# Headers Example
x-api-key: your-api-key
Without 2FA
With 2FA
1.
POST
request to /auth/sign_in
with the username and password.2.
Authorization
header for subsequent requests.Example Request
POST /auth/sign_in
Content-Type: application/json
{
"username": "your_username",
"password": "your_password"
}
Example Response
{
"token": "your-auth-token",
}
Authorization Header for Subsequent Requests:
Authorization: Bearer your-auth-token
Authentication with Access Token
Generate an Access Token
PUT /v2/user/generate_access_token
endpoint. Once generated, the token does not expire and can be used for all API requests.Use an Access Token
Authorization
header of your requests:Authorization: Basic your-access-token
Modified at 2024-11-15 15:41:30