Fair API Pricing
No Surprise Fees
Secure Your Document Distribution and Management with a Signority API Plan
Home
Getting Started
API Reference
Use Cases
Frequently Asked Questions
Delete File of a Document
GET: /v1/documents/{docID}/files/{fileID}
Description
Delete a file from a document
Format
JSON <multipart/related>
URL Parameters
None (Replace docID with the document ID and fileID with the file ID)
Data Parameters
None
Response
Response returns a success or error response
Response Parameters
Field | Mandatory | Type | Description |
---|---|---|---|
success | Yes | Boolean | True if the request was successful, False otherwise |
EXAMPLE REQUEST / RESPONSE (Python)
Request: requests.delete('https://sign.signority.com/api/v1/documents/{doc_id}/files/{file_id}', auth=(apiKey, '')) Response: { 'success': True }