Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Use the SetContentTypeCallBackURL property to set the content types of the HTTP request when using the Callback approach for your DocuSign integration. This property is useful when there is a need to format the request body in a type that your server can understand.

This property is contained within the DocuSign ESignType object, and is not available for any other e-signature integrations (SIGNiX or Native ESign). See the table below for available values for this property.


Content Type
Value
Description

...

Json0Designates the content to be in the JavaScript Object Notation (JSON) format
UrlEncoded1Designates the content to be in Query string format
Legacy2Hybrid content type used to support older implementations of the Quik Forms Engine. Content-type application/x-www-form-urlencoded and the body of the request is in JSON format


For SOAP implementations of the Quik! Forms Engine, use the text string values listed above. For REST and VB, use integer values. If no values are set, the default value will be 0 (JSON content type).

Sample Code

Code Block
languagexml
titleSetContentTypeCallBackURL Sample Code
{
"HostFormOnQuik": true,
"QuikFormID": "1",
"ESignType":
 
{ "Type": "Docusign", "AuthUserID": "Test", "SetContentTypeCallBackURL": 2, "SignCallbackURL": "https://www.google.com", "SignEnvironmentID": 2, },
}

...