Extend Envelope Signing Due Date (PUT /v2.0/envelopes/{envelopeId}/extend_signing_due_date)

This method extends the signing due date of the envelope. Due dates can only be extended for expired envelopes.

Request Parameters

 

Request Headers

Header Value
Authorization Bearer {access_token}
app_auth_type jsign-oauth2

Query Parameters

Field Type Required Description
due_date Date Yes New signing due date to be updated.

Response Parameters

 

Response Body Message Field

Field Value
message Signing due date extended successfully.

Sample Success Response

REQUEST:
curl --location --request POST '/api/v2.0/envelopes/{{envelopeID}}/extend_signing_due_date?due_date=04/29/2023' \
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9[...]' \
--header 'app_auth_type: jsign-oauth2' \ --header 'Content-Type: application/json' \
}'

RESPONSE:
{
"message": "Signing due date extended successfully.",
"data": {}
}

Sample Error Response

REQUEST:
curl --location --request POST '/api/v2.0/envelopes/{{envelopeID}}/extend_signing_due_date?due_date=04/29/2023' \
--header 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9[...]'\
--header 'app_auth_type: jsign-oauth2' \
--header 'Content-Type: application/json' \

RESPONSE:
{
"errors": [
{
"error_code": "SYSTEM_ERROR",
developer_message": "The server encountered unhandled error."
}
]
}

Note: View the full list of applicable error code for this method here.

Return to the top of this page.