Get Associated Files
Associated Files
/api/public/standalone/associated_files/[request_id|session_editor_token]
Get a list of all files associated with the e-signature request by doing a get request to the associated files endpoint.
Headers
- Authorization: Bearer [user key: auth token]
Parameters
None
A CURL Request
curl -X GET https://docendorse.com/api/public/standalone/associated_files/ \
-H "Content-Type: application/json" \
-H "Authorization: Bearer "
Response
Returns a list of associated files.
[{
status: string [complete|incomplete; indicates whether all signatories have done their section],
versions: [
{
id: integer [id of the document],
no: integer [version number],
}
],
source_document_id: integer
source_document_title: string [the title of the original document]
}]
Error
{
status: error,
description: error message
}