The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"id": "support-refund",
"name": "Support Refund Workflow",
"nodes": [
{
"id": "webhook",
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"parameters": {
"path": "support-refund",
"httpMethod": "POST"
}
},
{
"id": "lookup-order",
"name": "Lookup Order",
"type": "n8n-nodes-base.httpRequest",
"parameters": {
"url": "https://api.example.com/orders/{{ $json.order_id }}",
"method": "GET"
}
},
{
"id": "human-approval",
"name": "Refund Approval",
"type": "n8n-nodes-base.sendAndWait",
"parameters": {
"operation": "sendAndWait"
}
}
],
"connections": {
"Webhook": {
"main": [
[
{
"node": "Lookup Order",
"type": "main",
"index": 0
}
]
]
},
"Lookup Order": {
"main": [
[
{
"node": "Refund Approval",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Support Refund Workflow. Uses httpRequest, sendAndWait. Webhook trigger; 3 nodes.
Source: https://github.com/ThreeMoonsLab/agents-shipgate/blob/b572ea3534e1cb40614b4808c4f40d7433092bfe/samples/n8n_workflow_agent/workflows/support-refund.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
v2 Like Minds — Instagram Publish. Uses httpRequest. Webhook trigger; 6 nodes.
This is a specific use case. The ElevenLabs guide for Cal.com bookings is comprehensive but I was having trouble with the booking API request. So I built a simple workflow to validate the request and
Materials Search Workflow. Uses httpRequest. Webhook trigger; 5 nodes.
Lifecycle Email Orchestrator. Uses airtable, emailSend, httpRequest. Webhook trigger; 4 nodes.