Delete

Trigger full hard deletion after webhook receipt.

DELETE /v1/signing-requests/{id}

Triggers full hard deletion of all document data and personal information associated with a signing request. Send this after your platform has durably stored the sealed PDF and audit bundle from the webhook.

When to call DELETE

The expected lifecycle is:

  1. Receive the webhook.
  2. Verify the HMAC signature.
  3. Store the sealed PDF and audit bundle durably.
  4. Return 2xx to NoSign.
  5. Call DELETE on the signing request.

NoSign will not delete on its own until either:

One delete code path

There is one single delete code path in NoSign — whether triggered by your platform’s explicit DELETE call or by the retention scheduler. Both paths result in the same complete hard deletion.

What gets deleted

What is retained

A PII-scrubbed audit tombstone is retained after deletion. The tombstone records that a signing request with the given ID existed and was completed and deleted, with timestamps, but contains no personal data and no document content.

This tombstone exists so that you can prove a request was handled — without retaining anything about who signed what.

Response

204 No Content on success.

StatusCause
401Missing or invalid API key
404Signing request not found (already deleted or invalid ID)
409Signing request is still in progress — cannot delete before completion