v1

latestOpenAPI 3.0.0proprietary2026-07-261695971.5 MB
Signer Document Request

Add Signer Document Request to a Signature Request

Adds a Signer Document Request to a given Signature Request.

post/signature_requests/{signatureRequestId}/document_requests

Path parameters

signatureRequestIdstring uuid required

The unique identifier for a resource.

Example:9a93d3b5-fb3b-4abf-9e70-26315b33506c

Signature Request Id

Request body

titlestring safe-string required

This property is a Safe String.

optionalboolean required
signer_idsstring[] required

Example request

{
  "title": "Proof of address",
  "optional": true,
  "signer_ids": [
    "29f6049b-9c9d-4d1d-893c-be24e7d98d13",
    "7d938814-5492-4c02-806e-69c8fc1254ff"
  ]
}

Response

Created

idstring uuid required

Unique identifier of the Signer Document Request

titlestring required

Title of the document request

optionalboolean required

Define if the document request is optional for the Signers

signer_idsstring[] required

Ids of Signers to request a document

Example response

{
  "id": "69df8404-40d3-4686-887b-5678f46a0d9a",
  "title": "Proof of address",
  "signer_ids": [
    "2fd4a3fb-a886-4c9d-ac49-ea6f759c0c64"
  ]
}