Get E-signature
Get E-signature
/api/public/standalone/get_esignature/[request_id|session_editor_token]
Get an e-signature request by doing a get request to the get esignature endpoint.
Headers
- Authorization: Bearer [user key: auth token]
Parameters
None
A CURL Request
curl -X GET https://docendorse.com/api/public/standalone/get_esignature/ \
-H "Content-Type: application/json" \
-H "Authorization: Bearer "
Response
Returns an E-Signature Request Object.
{
process_status: string [complete|incomplete; indicates whether all signatories have done their section],
request_id: string,
mark_up: {
[document id]: {},
[document id]: {},
},
mail_attachments: [],
reminders: {},
type: string,
message: string,
batch_no: string,
expire: integer,
is_cancelled: boolean,
title: string [the title of the e-signature request]
}
Error
{
status: error,
description: error message
}