Signing
Sign assignment items
Sign a document with input fields (collect method): submit the signer's item values, completing their items. For virtual assignments the signer must first confirm their data via PUT /v1/documents/{documentId}/signers/confirm-data, otherwise this returns 400 (Signer data must be confirmed before signing). Signers whose verification method is DigitalCertificate cannot use this endpoint — their signature must be produced through POST /v1/signers/certificate/start + /complete, and this returns 400. The request body is a JSON array of item entries. Uses the signer access code.
post/v1/documents/{documentId}/assignments/{assignmentId}
Path parameters
documentIdstring required
Document ID.
assignmentIdstring required
The assignment ID.
Request body
Example request
[
{
"itemId": "615606efcde1a39c9d21e30e",
"fieldId": "6152120297080d55bdd13197",
"pageId": "615213ed81b071f4293b2fc2",
"value": "Signed by Sonny Bayer"
}
]Response
Signing result
Example response
{
"status": 200
}Changes
No recorded changes to this endpoint across all 1 revision of this API.