simplysiby
simplysiby

Reputation: 584

Docusign - Azure AD SSO and invoking Rest API

We are using Docusign with SSO configured to Azure AD using SAML.

My idea is to have a custom Single Page Application (SPA) which would be authenticated by Azure AD.

I have 2 separate Azure AD apps registered to Single Sign on to SPA and Docusign.

Is there a way I can make use of a single access token returned after logging in to the SPA to also invoke my Docusign API ?

Thanks in advance !

Upvotes: 0

Views: 895

Answers (1)

Inbar Gazit
Inbar Gazit

Reputation: 14050

Tokens for DocuSign are not useful for Azure and tokens for Azure are not useful for DocuSign. There's no way to make API calls with Azure AD tokens to DocuSign. We have a concept of SSO, but that is end-user feature which eventually result in you getting a token to DocuSign. You would have to use OAuth for DocuSign to obtain token to make API calls into DocuSign directly.

Upvotes: 1

Related Questions