← Back
Store document from Vendor application and send to DocuSign
n8n_2000_workflows / store-document-vendor-application-docusign.json
Complexity: simpleNodes: 4
applicationbasedatadocumentdocusignerrorfetchfromhttprequestincomingn8nn8n_2000_workflowsnodessendsimpleslackstorestore-document-vendor-application-docusign.jsontotriggervendorwebhook
Node Overview
- Incoming Trigger – n8n-nodes-base.webhook
- Fetch data from Vendor application – n8n-nodes-base.httpRequest
- Send to DocuSign – n8n-nodes-base.httpRequest
- Send Error to Slack – n8n-nodes-base.slack
Workflow JSON
{
"name": "Store document from Vendor application and send to DocuSign",
"nodes": [
{
"id": "trigger-vendor-application",
"name": "Incoming Trigger",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
-600,
169900
],
"parameters": {
"httpMethod": "POST",
"path": "store-document-from-vendor-application-and-send-to-docusign",
"responseCode": 200,
"responseMode": "onReceived"
}
},
{
"id": "fetch-vendor-application",
"name": "Fetch data from Vendor application",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [
-300,
169900
],
"parameters": {
"method": "GET",
"url": "https://api.example.com/vendor-application",
"responseFormat": "json"
}
},
{
"id": "send-docusign",
"name": "Send to DocuSign",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [
300,
169900
],
"parameters": {
"method": "POST",
"url": "https://api.example.com/docusign",
"responseFormat": "json",
"options": {}
}
},
{
"id": "error-handler-600-169900",
"name": "Send Error to Slack",
"type": "n8n-nodes-base.slack",
"typeVersion": 1,
"position": [
600,
169900
],
"parameters": {
"resource": "message",
"operation": "post",
"channel": "#automation-alerts",
"text": "={{ $json.get('error_message', 'An error occurred') }}"
}
}
],
"connections": {
"Incoming Trigger": {
"main": [
[
{
"node": "Fetch data from Vendor application",
"type": "main",
"index": 0
}
]
]
},
"Fetch data from Vendor application": {
"main": [
{
"node": "Send to DocuSign",
"type": "main",
"index": 0
}
]
},
"Send to DocuSign": {
"main": [
[
{
"node": "Send Error to Slack",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {},
"active": false
}