v1

latestOpenAPI 3.0.0proprietary2026-07-261695971.5 MB
Signer Consent Request

Update a Signer Consent Request

Updates a given Signer Consent Request. Any parameters not provided are left unchanged. This action is only permitted when the Signature Request is a draft or paused.

patch/signature_requests/{signatureRequestId}/consent_requests/{consentRequestId}

Path parameters

signatureRequestIdstring uuid required

The unique identifier for a resource.

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

Signature Request Id

consentRequestIdstring uuid required

The unique identifier for a resource.

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

Signer Consent Request Id

Request body

optionalboolean

Define if the Signer Consent Request is optional for Signers

insert_after_idstring uuid nullable

Insert just after the position of the specified Signer Consent Request id

document_idstring uuid nullable

Link the Signer Consent Request to a given Document by its id.

Example request

{
  "settings": {
    "text": "I agree with..."
  },
  "document_id": "9a93d3b5-fb3b-4abf-9e70-26315b33506c"
}

Response

OK

idstring uuid required

Unique identifier of the Consent Request.

{"stackTrail":"components:schemas:SignerConsentRequest:properties:type","oasType":"schema","type":"unknown","description":"Type of the consent request."}
optionalboolean required

Indicates whether fulfilling this Consent Request is optional for completing the signature process.

document_idstring required

Identifier of the document associated with this Consent Request.

Example response

{
  "id": "550e8402-e29b-41d4-a716-446655440000",
  "optional": true,
  "document_id": "550e8402-e29b-41d4-a716-446655440000"
}