diff --git a/src/auth/oauth.ts b/src/auth/oauth.ts index 02c6a8462..8d7a60e3b 100644 --- a/src/auth/oauth.ts +++ b/src/auth/oauth.ts @@ -89,6 +89,11 @@ export interface ClientCredentialsGrantRequest extends ClientCredentials { * The unique identifier of the target API you want to access. */ audience: string; + + /** + * An Organization Name or ID. When included, the access token returned will include the org_id and org_name claims + */ + organization?: string; } export interface PasswordGrantRequest extends ClientCredentials {