Actions20
- Delivery Actions
- Inventory Actions
- Log Actions
- Order Actions
- Shipment Actions
Overview
The RedStage node for n8n allows you to interact with the Red Stage API, specifically targeting various resources such as orders, shipments, deliveries, inventory, and logs.
For the Order resource with the Info Order operation, this node retrieves detailed information about a specific order using its unique identifier. This is useful in scenarios where you need to fetch order details for reporting, automation, or integration with other systems.
Practical examples:
- Retrieve all available data for a given order to display in a dashboard.
- Fetch only selected fields (e.g., shipping address) for further processing.
- Integrate order status checks into automated workflows.
Properties
| Name | Type | Meaning |
|---|---|---|
| Order Unique ID | String | The unique identifier of the order whose information you want to retrieve. |
| Additional Fields | Collection | Optional. Allows specifying which fields should be included in the response. |
| └ Field to Show | JSON | Specify an array of field names (e.g., ["*", "shipping_address"]) to include in the output. |
Output
The node outputs a JSON object containing the requested order information.
- If you specify fields in Field to Show, only those fields will be present in the output.
- If no fields are specified, the full order object is returned.
Example output:
{
"unique_id": "12345",
"status": "processing",
"shipping_address": {
"street": "123 Main St",
"city": "Metropolis"
},
...
}
If an error occurs and "Continue On Fail" is enabled, the output will contain:
{
"error": "Error message here"
}
Dependencies
- External Service: Requires access to the Red Stage API.
- Credentials: You must configure the
redStageApicredential in n8n for authentication.
Troubleshooting
Common issues:
- Invalid Order Unique ID: If the provided ID does not exist, the API may return an error or empty result.
- Missing Credentials: If the
redStageApicredential is not set up, the node will fail to authenticate. - Unknown Resource/Operation: If an unsupported resource or operation is specified, the node throws:
"The resource \"<resource>\" is not known!"
How to resolve:
- Double-check the Order Unique ID.
- Ensure the Red Stage API credentials are correctly configured in n8n.
- Use only supported resources and operations as listed in the node's options.
Links and References
- n8n Documentation
- Red Stage API documentation (contact your Red Stage provider for access)