Before initiating an Access Level request, you must authenticate with Forte’s OAuth2 API.

Endpoint

POST /auth/v1/oauth2/token

Request

{
  "client_id": "{{client_id}}",
  "client_secret": "{{client_secret}}"
}

Client Credentials

Response

{
  "data": {
    "access": "eyJraWQi...",
    "expires_in": 3600,
    "token_type": "Bearer"
  }
}

⚠️ The access token is valid for 1 hour. Refresh it as needed before making additional requests.