Petstore icon

Petstore

Interact with Petstore API

Overview

This node operation fetches a specific order from the Store by its unique Order Id. It is useful when you need to retrieve detailed information about a particular order, such as its status, items, and customer details. For example, it can be used in workflows that track order fulfillment or display order details in a dashboard.

Properties

Name Meaning
Order Id The unique identifier of the order to be fetched from the Store.

Output

JSON

  • id - The unique identifier of the order.
  • petId - The identifier of the pet associated with the order.
  • quantity - The quantity of items ordered.
  • shipDate - The date when the order is shipped.
  • status - The current status of the order (e.g., placed, approved, delivered).
  • complete - Boolean indicating whether the order is complete.

Dependencies

Troubleshooting

  • Ensure the Order Id provided exists; otherwise, the node may return an error or empty result.
  • Check network connectivity to the Petstore API endpoint to avoid request failures.
  • Verify that the API endpoint is reachable and not down for maintenance.

Discussion