Get document
Retrieve all the details about a document and signing progress
- Overview
-
Get details about a single document
- See the current status of the document and signers
- When the signers completed the document
- Field input values
- End Point
- https://goodsign.io/api/document/:uuid
- Method
- GET
- Authentication
- Bearer your_api_token
- Response
-
{ "master_doc": { "name": "F - Depreciation Schedule.pdf", "signers": [], "fields": [], "completed_time": null, "status": "draft", "cc": null, "is_attachment": true, "istemplate": null, "webhook": null, "metadata": null, "note": null, "uuid": "", "download_pdf": "https:\/\/goodsign.io\/api\/download\/", "download_zip": null }, "attachments": [] }
-
Working Curl Request
Uses JSON and signers from above.
(excludes any fields & metadata) -
curl --request GET \ --url https://goodsign.io/api/document/ \ --header 'authorization: Bearer YOUR_API_TOKEN'