PublicApiTokenResponse

Successful OAuth 2.0 client-credentials token response. Use the returned access token as a Bearer token in the Authorization header of subsequent API requests.

  • access_token
    Type: string

    The OAuth 2.0 access token. Send it on subsequent API calls in the Authorization header as Bearer <access_token>. Treat it as an opaque, confidential credential.

  • expires_in
    Type: integer Format: int32

    The lifetime of the access token in seconds from the time it was issued. Request a new token before it expires.

  • token_type
    Type: string

    The type of token issued. Always Bearer for this endpoint, indicating the token is used as an HTTP Bearer credential.

Grand Public API