Class RevokeTokenRequest

java.lang.Object
com.ringcentral.definitions.RevokeTokenRequest

public class RevokeTokenRequest extends Object
  • Field Details

    • token

      public String token
      Access or refresh token to be revoked (along with the entire OAuth session). Required, unless it is passed via the `token` query parameter
    • client_id

      public String client_id
      The registered identifier of a client application. Used to identify a client ONLY if the client authentication is not required and corresponding credentials are not provided with this request Example: AZwEVwGEcfGet2PCouA7K6
    • client_assertion_type

      public String client_assertion_type
      Client assertion type for the `client_secret_jwt` or `private_key_jwt` client authentication types, as defined by [RFC-7523](https://datatracker.ietf.org/doc/html/rfc7523#section-2.2). This parameter is mandatory if the client authentication is required and a client decided to use one of these authentication types Enum: urn:ietf:params:oauth:client-assertion-type:jwt-bearer
    • client_assertion

      public String client_assertion
      Client assertion (JWT) for the `client_secret_jwt` or `private_key_jwt` client authentication types, as defined by [RFC-7523](https://datatracker.ietf.org/doc/html/rfc7523#section-2.2). This parameter is mandatory if the client authentication is required and a client decided to use one of these authentication types
  • Constructor Details

    • RevokeTokenRequest

      public RevokeTokenRequest()
  • Method Details