Overview
The "Orderful Transaction" node manages EDI (Electronic Data Interchange) transactions within the Orderful platform. Specifically, the Confirm Delivery operation allows users to confirm the delivery status of one or more transactions by providing their transaction IDs. This is useful in supply chain and logistics workflows where confirming receipt or delivery of electronic documents (such as purchase orders, invoices, or shipment notices) is necessary for tracking and compliance.
Practical examples include:
- Automatically confirming delivery of multiple EDI transactions after processing them downstream.
- Integrating with other systems to update transaction statuses once delivery is verified.
- Batch confirming delivery to streamline order fulfillment processes.
Properties
| Name | Meaning |
|---|---|
| Transaction IDs | Comma-separated list of transaction IDs to confirm delivery. Each ID corresponds to a transaction whose delivery status will be confirmed. |
Output
The node outputs JSON data representing the response from the Orderful API after confirming delivery of the specified transactions. The structure typically includes confirmation details per transaction, such as success status or any errors encountered.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the Orderful API.
- Needs the base URL of the Orderful API configured in credentials.
- Uses HTTP requests to interact with the Orderful service endpoints.
Troubleshooting
- Invalid or missing Transaction IDs: Ensure that the "Transaction IDs" property is provided as a comma-separated string of valid transaction identifiers. Empty or malformed input will cause errors.
- API authentication errors: Verify that the API key and base URL are correctly set in the node credentials.
- Network or connectivity issues: Confirm network access to the Orderful API endpoint.
- Error messages from API: If the API returns errors (e.g., invalid transaction IDs, permissions issues), these will be surfaced in the node's output. Review the error message for guidance.
Links and References
- Orderful API Documentation (for detailed API endpoints and payload formats)
- n8n Documentation on HTTP Request Node (for understanding how API calls are made)