PublicApiTokenRequest

Request body for the OAuth 2.0 client-credentials token endpoint. Submit your API client credentials to obtain a short-lived Bearer access token.

  • client_id
    Type: string

    The client identifier issued to you when your API credentials were created.

  • client_secret
    Type: string

    The client secret paired with your client_id. Keep this confidential and never expose it in client-side code.

  • grant_type
    enum
    const:  
    client_credentials

    The OAuth 2.0 grant type. Must be the literal value client_credentials.

    values
    • client_credentials

Grand Public API