Sajit Gupta
Sajit Gupta

Reputation: 108

Pass header from Docusign Connect to webhook

I am trying to push notifications from DocuSign Connect to our webhook.

Is there any way to provide a header named Appkey and a given value when DocuSign connect pushes notifications to the provided webhook URL?

Our webhook requires a header named AppKey to access it.

Currently, I don't see any such configuration in Docusign Connect UI.

Upvotes: 0

Views: 508

Answers (2)

Larry K
Larry K

Reputation: 49114

Drew is correct that custom headers can't be supplied at this time.

A possible workaround: you can supply parameters via the URL's query parameters. Eg use URL https://docusign-listener.example.com/?appkey=123

Remember that, thanks to the SSL/TLS protocol, the query parameters are NOT visible to anyone tapping the line since they are only sent after the encrypted channel is set up between the client (DocuSign) and the server (your app).

Also, if you'd like to be able to specify headers for the notification message requests, ask your DocuSign technical contact to add your organization's information to the internal ticket CONNECT-1109. Adding your information will help increase the priority of the enhancement request.

Upvotes: 3

Drew
Drew

Reputation: 5029

No, DocuSign Connect doesn't support custom headers.

Upvotes: 1

Related Questions