POST
/
v1
/
envelopes
/
{envelope_id}
/
deliverables
// POST https://api.signatureapi.com/v1/envelopes/{envelope_id}/deliverables
// X-API-Key: key_test_...
// Content-Type: application/json

{
  "type": "standard",
  "language": "en",
  "timezone": "UTC",
  "timestamp_format": "MM/DD/YYYY hh:mm:ss",
}
{
  "id": "del_3gGNgIxxxxo8Xn7epZQ8F",
  "envelope_id": "4ec99c57-4430-4d73-8afd-912dcf4b5880",
  "status": "processing",
  "type": "standard",
  "url": null,
  "password": null,
  "timezone": "UTC",
  "language": "en",
  "timestamp_format": "MM/DD/YYYY hh:mm:ss",
  "created_at": "2025-12-31T23:59:59.999Z",
  "generated_at": null,
}
This operation creates a deliverable for a completed envelope. Deliverables created using this endpoint are not sent automatically to the recipients.

Path Parameters

envelope_id
string
required
The unique identifier of the envelope.

Body Parameters

Returns

Returns a 201 Created status code along with a deliverable object after successful creation, or an error otherwise.
// POST https://api.signatureapi.com/v1/envelopes/{envelope_id}/deliverables
// X-API-Key: key_test_...
// Content-Type: application/json

{
  "type": "standard",
  "language": "en",
  "timezone": "UTC",
  "timestamp_format": "MM/DD/YYYY hh:mm:ss",
}
{
  "id": "del_3gGNgIxxxxo8Xn7epZQ8F",
  "envelope_id": "4ec99c57-4430-4d73-8afd-912dcf4b5880",
  "status": "processing",
  "type": "standard",
  "url": null,
  "password": null,
  "timezone": "UTC",
  "language": "en",
  "timestamp_format": "MM/DD/YYYY hh:mm:ss",
  "created_at": "2025-12-31T23:59:59.999Z",
  "generated_at": null,
}