Get Scaleway Server Info with Dynamic Filtering - n8n Workflow | Neura Market
Get Scaleway Server Info with Dynamic Filtering
# Get Scaleway Server Info with Dynamic Filtering
## Description
This workflow is designed for developers, system administrators, and DevOps engineers who need to retrieve and filter Scaleway server information quickly and efficiently. It gathers data from Scaleway instances and baremetal servers across multiple zones and is ideal for:
- Quickly identifying servers by tags, names, public IPs, or zones.
- Automating server status checks in production, staging, or test environments.
- Integrating Scaleway data into broader monitoring or inventory systems.
## High-Level Steps
- **Webhook Trigger:** Receives an HTTP POST request (with basic authentication) containing the search criteria (`search_by` and `search`).
- **Server Data Collection:** Fetches server data from Scaleway's API endpoints for both instances and baremetal servers across defined zones.
- **Data Processing:** Aggregates and normalizes the fetched data using a Code node with helper functions.
- **Dynamic Filtering:** Routes data to dedicated filtering routines (by tags, name, public_ip, or zone) based on the input criteria.
- **Response:** Returns the filtered data (or an error message) via a webhook response.
## Set Up Steps
1. **Insert Your Scaleway Token:** In the “Edit Fields” node, replace the placeholder `Your personal Scaleway X Auth Token` with your Scaleway API token.
2. **Configure Zones:** Review or update the zone lists (`ZONE_INSTANCE` and `ZONE_BAREMETAL`) to suit your environment.
3. **Send a Request:** Make a POST request to the workflow's webhook endpoint with a JSON payload, for example:
```json
{
"search_by": "tags",
"search": "Apiv1"
}
```
4. **View the Results:** The workflow returns a JSON array of servers matching your criteria, including details like name, tags, public IP, type, state, zone, and user.
Platform
n8n
Category
IT & Development
Price
Free
Creator
Pablo
if
set
code
switch
webhook
splitOut
stickyNote
httpRequest
splitInBatches
respondToWebhook
How to import this workflow into n8n
1Purchase or download the workflow to get the n8n workflow JSON file.
2In your n8n instance, open Workflows and choose "Import from File" (or paste the JSON with Ctrl+V on the canvas).
3Open each node marked with a credential warning and connect your own accounts and API keys.
4Run the workflow once manually to verify the data flow, then toggle it to Active.