diff --git a/main/docs/api/authentication/authorization-code-flow-with-pkce/get-token-pkce.mdx b/main/docs/api/authentication/authorization-code-flow-with-pkce/get-token-pkce.mdx
index bbf6fe449b..67ea346a97 100644
--- a/main/docs/api/authentication/authorization-code-flow-with-pkce/get-token-pkce.mdx
+++ b/main/docs/api/authentication/authorization-code-flow-with-pkce/get-token-pkce.mdx
@@ -42,6 +42,10 @@ This is the flow that mobile apps use to access an API. Use this endpoint to exc
Your application's Client ID.
+
+ The `client_secret` of your application. Required for confidential applications using the `client_secret_post` token endpoint authentication method.
+
+
The Authorization Code received from the initial `/authorize` call.
diff --git a/main/docs/oas/authentication/authentication-api-oas.json b/main/docs/oas/authentication/authentication-api-oas.json
index c8be8a92ca..ae01713d9d 100644
--- a/main/docs/oas/authentication/authentication-api-oas.json
+++ b/main/docs/oas/authentication/authentication-api-oas.json
@@ -3600,6 +3600,10 @@
"type": "string",
"description": "Your application's Client ID"
},
+ "client_secret": {
+ "type": "string",
+ "description": "Your application's Client Secret. Required for confidential clients."
+ },
"code_verifier": {
"type": "string",
"description": "The original code verifier for the PKCE request. The authorization server will hash this and compare it to the code_challenge from the authorization request.",