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 →
{
"name": "BARIN ALP - Get Users",
"nodes": [
{
"parameters": {
"httpMethod": "GET",
"path": "users",
"options": {
"allowedOrigins": "*"
}
},
"id": "webhook-users",
"name": "Webhook Users",
"type": "n8n-nodes-base.webhook",
"typeVersion": 2,
"position": [
250,
300
]
},
{
"parameters": {
"operation": "read",
"documentId": {
"__rl": true,
"value": "1Mvg9vxzp7LyYwNor0i8o8LvqYiF0ID4WD3Af58zkVTo",
"mode": "id"
},
"sheetName": {
"__rl": true,
"value": "Users",
"mode": "list"
}
},
"id": "sheets-users",
"name": "Get Users Sheet",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 4.4,
"position": [
470,
300
],
"credentials": {
"googleSheetsOAuth2Api": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"respondWith": "json",
"responseBody": "={{ $input.all().map(item => ({\n id: parseInt(item.json.id),\n username: item.json.username,\n name: item.json.name,\n role: item.json.role,\n balance: parseFloat(item.json.balance) || 0\n})) }}",
"options": {
"responseHeaders": {
"entries": [
{
"name": "Access-Control-Allow-Origin",
"value": "*"
}
]
}
}
},
"id": "respond-users",
"name": "Respond Users",
"type": "n8n-nodes-base.respondToWebhook",
"typeVersion": 1.1,
"position": [
690,
300
]
}
],
"connections": {
"Webhook Users": {
"main": [
[
{
"node": "Get Users Sheet",
"type": "main",
"index": 0
}
]
]
},
"Get Users Sheet": {
"main": [
[
{
"node": "Respond Users",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
googleSheetsOAuth2Api
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
BARIN ALP - Get Users. Uses googleSheets. Webhook trigger; 3 nodes.
Source: https://github.com/Georgi-Piskov/barin-alp-pwa/blob/e075dc84be1bb3ab00948c90ae754447771adaa5/n8n-workflows/02-get-users.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.
Googlesheets Respondtowebhook. Uses respondToWebhook, googleSheets, stickyNote. Webhook trigger; 7 nodes.
This workflow provides Retell agent builders with a simple way to populate dynamic variables using n8n. The workflow fetches user information from a Google Sheet based on the phone number and sends it
This workflow automates customer support for SMEs in five simple steps: Capture requests via a Webhook connected to a contact form. Extract the message to make processing easier. Check categories (e.g
Order Management Workflow. Uses googleSheets. Webhook trigger; 7 nodes.
BARIN ALP - Invoices CRUD. Uses googleSheets. Webhook trigger; 6 nodes.