For the complete documentation index, see llms.txt. This page is also available as Markdown.

GetOrders

Retrieves orders from Shopify

Task version: 1.0.0

Required Frends version: 5.7+

Required .NET version: 8.0

Compatible Agents: Crossplatform

Task Parameters

Name
Description

CreatedAtMin : String

Optional. Start date/time in ISO 8601 format.

Default: - Example: "2025-01-01T00:00:00Z"

CreatedAtMax : String

Optional. End date/time in ISO 8601 format.

Default: - Example: "2025-12-31T23:59:59Z"

Status : String

Optional. Filter orders by status. Default is open.

Default: open Example: open, closed, cancelled

FulfillmentStatus : String

Optional. Filter by fulfillment status.

Default: - Example: shipped, partial, unshipped

Task Result

Name
Description

Success : Boolean

Indicates whether the retrieval was successful. Example: true

Orders : List<Object>

List of order objects returned from Shopify. Example: [ { "id": 1234567890123, "email": "customer@example.com", "created_at": "2025-01-01T12:00:00Z", "updated_at": "2025-01-01T12:00:00Z", "number": 1001, "status": "open", "total_price": "10.00", "currency": "EUR", "customer": { "id": 1234567890123, "first_name": "Example", "last_name": "Name" }, "line_items": [ { "id": 1234567890123, "product_id": 1234567890123, "name": "Example Product", "price": "10.00", "quantity": 1 } ] } ]

PageInfo : PageInfo

Pagination cursor. Example: object { string NextPage, string PreviousPage }

Error : Error

Error that occurred during task execution. Example: object { string Message, object { Exception Exception } AdditionalInfo }

Task Changelog

Changelog for Task Frends.Shopify.GetOrders.

[1.0.0] - 2025-07-11

Changed

  • Initial implementation

Last updated

Was this helpful?