How to use the X-DocuSign-Authentication header for REST and SOAP?

What are the options and formats for using the "X-DocuSign-Authentication" header when used for REST and SOAP?

+3
source share
1 answer

X-DocuSign Authentication [HTTP HEADER]

  • Best practice: Use obfuscation of username and password in api authentication header
  • Definition: Sending by name (API) is SOBO.

Given the following values:

  • Username == API Service User == " service.account.user.member@domain.com " == USERID "Cdcd3fc7-2b3c-40d4-98ed-ff90add317ca"
  • == "yourpassword" = EncryptedAPIPassword == "/A5hpPhSczID + JNEKZbg5mYf7 + 7 ="
  • SOBOUser == "user.member@domain.com" == USERID "Eacd3fc7-2b3c-40d4-98ed-ff90add317ff"
  • Integratorkey == "YDMN-339fa93c-fcf0-4390-8141-2e0f071ffa2e"

HTTP HTTP  X-DocuSign-:

XML:

-SOBO

<DocuSignCredentials><Username>cdcd3fc7-2b3c-40d4-98ed-ff90add317ca</Username><Password>/A5hpPhSczID+JNEKZbg5mYf7+7=</Password><IntegratorKey>YDMN-339fa93c-fcf0-4390-8141-2e0f071ffa2e </IntegratorKey></DocuSignCredentials>

SOBO

<DocuSignCredentials><Username>cdcd3fc7-2b3c-40d4-98ed-ff90add317ca</Username><Password>/A5hpPhSczID+JNEKZbg5mYf7+7=</Password><IntegratorKey>YDMN-339fa93c-fcf0-4390-8141-2e0f071ffa2e</IntegratorKey><SendOnBehalfOf>eacd3fc7-2b3c-40d4-98ed-ff90add317ff </SendOnBehalfOf></DocuSignCredentials>

JSON:

-SOBO

{"Username":"cdcd3fc7-2b3c-40d4-98ed-ff90add317ca","Password":"/A5hpPhSczID+JNEKZbg5mYf7+7=","IntegratorKey":"YDMN-339fa93c-fcf0-4390-8141-2e0f071ffa2e"}

SOBO

{"Username":"cdcd3fc7-2b3c-40d4-98ed-ff90add317ca","Password":"/A5hpPhSczID+JNEKZbg5mYf7+7=","SendOnBehalfOf":"eacd3fc7-2b3c-40d4-98ed-ff90add317ff","IntegratorKey":"YDMN-339fa93c-fcf0-4390-8141-2e0f071ffa2e"}

API , , SOBO .

SOBO SOBO , . , , , , .

,

X-DocuSign-Authentication Inforgraphic

+8

All Articles