Update Document Fields

Updates existing custom document fields in an existing envelope document.

External Documentation

To learn more, visit the Docusign documentation.

Parameters

ParameterDescription
Document FieldsThe array of name/value custom data strings to be added to a document. Custom document field information is returned in the status, but otherwise is not used by DocuSign.The array contains the elements:* name - A string that can be a maximum of 50 characters.* value - A string that can be a maximum of 200 characters.For example:[ { "name": "fieldName" "originalValue": "initialItemValue" "value": "currentItemValue" "errorDetails": { "errorCode": "codeAssociatedWithTheErrorCondition" "message": "aBriefMessageDescribingTheErrorCondition" } }]For more information about the Document Fields parameter, visit Docusign API documentation
Document IDThe unique ID of the document within the envelope.
Envelope IDThe ID of the envelope.

Example Output

{
	"documentFields": [
		{
			"errorDetails": {
				"errorCode": "An error code associated with the error.",
				"message": "A short error message."
			},
			"name": "The name or key of a name/value pair.",
			"originalValue": "The initial value of the tab when it was sent to the recipient. ",
			"value": "The value field of a name/value pair."
		}
	]
}

Workflow Library Example

Update Document Fields with Docusign and Send Results Via Email

Preview this Workflow on desktop

Was this page helpful?