From 07b0ebe56b0bcb051a9c66fdae505c868314479c Mon Sep 17 00:00:00 2001 From: Prince Mathew Date: Tue, 16 Dec 2025 10:27:04 +0530 Subject: [PATCH] doc: Updated examples for CTE to include organization --- EXAMPLES.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/EXAMPLES.md b/EXAMPLES.md index f4fe292e..d124aa8c 100644 --- a/EXAMPLES.md +++ b/EXAMPLES.md @@ -627,7 +627,7 @@ authentication ```kotlin authentication - .customTokenExchange("subject_token_type", "subject_token") + .customTokenExchange("subject_token_type", "subject_token", "organization_id") .start(object : Callback { override fun onSuccess(result: Credentials) { // Handle success @@ -645,7 +645,7 @@ authentication ``` kotlin try { val credentials = authentication - .tokenExchange("subject_token_type", "subject_token") + .customTokenExchange("subject_token_type", "subject_token", "organization_id") .await() } catch (e: AuthenticationException) { e.printStacktrace() @@ -658,7 +658,7 @@ try { ```java authentication - .customTokenExchange("subject_token_type", "subject_token") + .customTokenExchange("subject_token_type", "subject_token", "organization_id") .start(new Callback() { @Override public void onSuccess(@Nullable Credentials payload) {