Skip to main content
POST
/
api
/
core
/
service-accounts
/
token
/
refresh
Refresh service account access token
curl --request POST \
  --url https://api.example.com/api/core/service-accounts/token/refresh \
  --header 'Authorization: Bearer <token>'
{
  "access_token": "<string>",
  "expires_in": 123,
  "token_type": "Bearer"
}

Documentation Index

Fetch the complete documentation index at: https://docs.genow.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token authentication. Format: 'Bearer '

Response

200 - application/json

Successful Response

Response schema for token endpoints — refresh_token is in the HttpOnly cookie, not the body.

access_token
string
required
expires_in
integer
required
token_type
string
default:Bearer