Order Retrieval Endpoint

Modified on Tue, 3 Sep at 10:16 AM

Overview

This endpoint is designed to retrieve a user's order data from a Shopify store without requiring direct interaction with the Shopify API. It processes a request that includes the user's email and the Shopify store ID, fetches the relevant order details, and returns a structured response with the order information, including fulfillment status and product images.

Endpoint

URL: ‘https://streamline-connector-for-voiceflow.gadget.app/order-data

Method: GET

Query Parameters

  • email: (string) The email address of the user whose orders are being retrieved. This is a required parameter.

  • shopId: (string) The ID of the Shopify store from which to retrieve the orders. This is a required parameter.

Response Format

Success Response (HTTP 200)

If the request is successful and orders are found, the endpoint returns a JSON response with the following structure:

{
  "success": true,
  "message": "if you're seeing this, you're authenticated! You sent the email: example@example.com",
  "data": [
    {
      "id": "order_id",
      "name": "order_name",
      "total_price": "order_total_price",
      "order_status": "Processed",
      "date": "order_date",
      "order_status_url": "order_status_url",
      "product_image": "product_image_url",
      "fulfillment_status": "fulfillment_status"
    },
    ...
  ]
}


success: Indicates whether the request was successful (true).

message: A message confirming the email and successful authentication.

data: An array of objects representing the user's orders.

  • id: The unique identifier for the order.

  • name: The name of the order.

  • total_price: The total price of the order.

  • order_status: The current status of the order, e.g., "Processed".

  • date: The date when the order was created.

  • order_status_url: A URL where the user can check the order status.

  • product_image: The URL of the product image associated with the order. If no image is found, it will return "image not found".

  • fulfillment_status: The fulfillment status of the order.

Error Responses

  • Shop Not Subscribed (HTTP 400) If the Shopify store is on a "Free" subscription plan:

{
  "success": false,
  "message": "Shop not subscribed"
}


  • Missing Email (HTTP 400) If the email parameter is missing:


{
  "success": false,
  "message": "Missing email"
}


  • Order Not Found (HTTP 404) If no orders are found for the provided email:


{
  "success": false,
  "message": "Order not found"
}


Data Retrieval Process

  1. Input Validation:

    • The function first extracts the email and shopId from the query parameters.

    • It checks if the shopId corresponds to a valid Shopify store and whether the store is subscribed to a plan that allows order retrieval.

  2. Email Normalization:

    • The provided email is converted to lowercase to ensure consistency in searching.

  3. Order Search:

    • Orders are retrieved from the database based on the normalized email and shop ID.

    • Orders are sorted by creation date in descending order to return the most recent orders first.

  4. Fulfillment Status Retrieval:

    • For each order, the latest fulfillment status is retrieved. If no status is found, it defaults to "Processed".

  5. Product Image Retrieval:

    • The product image associated with the order line items is retrieved. If no image is found, it defaults to "image not found".

  6. Response Construction:

    • The function compiles the retrieved data into a structured response and sends it back to the client.

Usage Example

To retrieve orders for a user with the email user@example.com from a Shopify store with ID 86025044251, you would send a GET request to:

https://streamline-connector-for-voiceflow.gadget.app/order-data?email=user@example.com&shopId=86025044251


The response will contain the order details associated with the specified email and Shopify store.

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article