From 4313225c7d0ee3d2e269f9cac2e448e38da36bd9 Mon Sep 17 00:00:00 2001 From: hugocasa Date: Tue, 19 May 2026 00:32:49 +0200 Subject: [PATCH] oauth: add docusign provider (#9155) Adds the Docusign Authorization Code OAuth entry. Used by the Docusign integration in the windmill-integrations hub (PR #128). Co-authored-by: Claude Opus 4.7 --- backend/oauth_connect.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/backend/oauth_connect.json b/backend/oauth_connect.json index d57e700c0d..c9693b2311 100644 --- a/backend/oauth_connect.json +++ b/backend/oauth_connect.json @@ -170,5 +170,12 @@ "full_api_access" ], "extra_params": {} + }, + "docusign": { + "auth_url": "https://account.docusign.com/oauth/auth", + "token_url": "https://account.docusign.com/oauth/token", + "scopes": [ + "signature" + ] } }