How to download extracted data?
Docsumo allows various ways to export extracted data:-
- Export CSV or Excel
a) If you want to download csv for selected data, select the documents and click on download:-
b) You can also download the output files for an specific document type using the download button from the processed tab.
If you get a message saying "download is sent to background,". You will receive email and also you can download file from activity log once file is ready.
`Click on activity log`
`Wait for process to complete`
`Once fIle is ready, you can download from here.`
- Webhook
Add webhooks on the 'Setting' page or download popup modules.
JSON of Data is sent as POST request to Webhooks
{
"doc_id": "ac3a1cde741a44c3b01993ff6901b7f0",
"meta_data": {
"type": "invoice",
"title": "eebe5b83b00c40af98851c45882c09f0.png",
"created_at": "2019-07-24T16:42:25+00:00",
"uploaded_from": "web"
},
"data": {
"Basic Information": {
"Invoice Number": "US-001",
"Issue Date": "11/02/2019",
"Terms": "26/02/2019",
"Order Id/Tracking No": "2312/2019"
},
"Seller Detail": {
"Name": "East Repair Inc.",
"Address": "New York, NY 12210",
"GST/ VAT Number": ""
},
"Buyer Detail": {
"Name": "John Smith",
"Address": "New York, NY 12210",
"GST/ VAT Number": ""
},
"GST & Amount": {
"Subtotal": 145,
"Tax Rate": 6.25,
"Tax Total": 9.06,
"Total Due": 154.06
},
"Line Items": [
{
"Description": "",
"HSN": "",
"Quantity": "",
"Unit Price": "",
"Tax Rate Line": "",
"Subtotal Line": ""
}
],
"Table Extract": [
{
"Description": "Front and rear brake cables",
"HSN": "",
"Quantity": "1",
"Unit Price": "100.00",
"Tax Rate Line": "",
"Subtotal Line": "100.00"
},
{
"Description": "New set of pedal arms",
"HSN": "",
"Quantity": "",
"Unit Price": "15.00",
"Tax Rate Line": "",
"Subtotal Line": "30.00"
},
{
"Description": "Labor 3hrs",
"HSN": "",
"Quantity": "",
"Unit Price": "5.00",
"Tax Rate Line": "",
"Subtotal Line": "15.00"
}
]
}
}
-
API
Each account has the API key, which can be used to access certain functionally of Docsumo:-
Curl, Python, JQuery, Node, Go
Updated 3 months ago