v1

latestOpenAPI 3.1.02026-07-132363652.9 MB
Auth

Issue a new access token

Issue a new access token

post/api/v1/oauth2/token

Request body

OR
OR
OR

Example request

{
  "client_id": "547544c3-eeac-492e-8df9-5a52ca4e6bdf",
  "client_secret": "b717adcac3f26e8034574021fa647cd7d4edd67b615046df387f6712c3601048"
}

Response

Success

successboolean required

Indicates if the request was successful

Example response

{
  "success": true,
  "data": {
    "access_token": "example_access_token_xyz789",
    "refresh_token": "example_refresh_token_abc123",
    "token_type": "Bearer",
    "expires_in": 900
  }
}