Shippo icon

Shippo

Interact with Shippo API

Actions68

Overview

The "List Manifests" operation in the Manifests resource allows users to retrieve a paginated list of shipping manifests from the Shippo API. This node is useful for logistics, e-commerce, or shipping management workflows where you need to track or audit batches of shipments grouped as manifests. For example, an online store could use this node to fetch all shipment manifests created within a certain timeframe to reconcile shipping records or generate reports.

Properties

Name Meaning
Page The page number of results to retrieve. Useful for navigating through multiple pages of manifests.
Results The number of manifest entries to return per page. Maximum allowed is 100; default is 5.
SHIPPO API VERSION Optional header to specify a non-default version of the Shippo API to use for this request.

Output

The node outputs JSON data representing a list of manifests retrieved from the Shippo API. Each manifest object typically contains details such as manifest ID, creation date, status, and associated shipments. The output structure directly reflects the API response's JSON format for manifests listing.

No binary data output is produced by this operation.

Dependencies

  • Requires an active Shippo API key credential configured in n8n.
  • Connects to the Shippo API endpoint at https://api.goshippo.com.
  • Optionally supports specifying the API version via a custom header.

Troubleshooting

  • Invalid API Key or Authentication Errors: Ensure that the Shippo API key credential is correctly set up and has necessary permissions.
  • Pagination Issues: If no results appear, verify that the Page and Results parameters are within valid ranges and that manifests exist for those pages.
  • API Version Header Misuse: Providing an incorrect or unsupported API version string may cause errors; consult Shippo’s API versioning documentation.
  • Rate Limits: Frequent requests might hit Shippo’s rate limits; handle such errors by implementing retries or backoff strategies.

Links and References

Discussion