Connect API
Connect API Reference - Operator API
Authentication Specification
Overview
Implement an authentication mechanism using clientKey and clientSecret to obtain a valid JWT token.
Requirements
This endpoint is used to authenticate clients by validating their credentials (key and secret). On success, an access token and a refresh token are returned. These tokens are used for authorized access to the protected API endpoints.
Authorizations
AuthorizationstringRequired
REQUIRED - JWT Authorization header using the Bearer scheme. All API endpoints require authentication, except for authentication endpoints (Connect/authentication). Example: "Authorization: Bearer {token}"
Query parameters
api-versionstringOptional
Body
clientKeystring | nullableOptional
clientSecretstring | nullableOptional
Responses
200
Authentication was successful. The response includes the access and refresh tokens.
400
If the credentials are invalid or the request is malformed.
post
/Connect/authenticationLast updated