cURL
curl --request POST \ --url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#SHOPIFY_GET_ORDERS' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "action": "SHOPIFY_GET_ORDERS", "parameters": { "orderIds": "<string>", "createdAtMin": "<string>", "createdAtMax": "<string>", "updatedAtMin": "<string>", "updatedAtMax": "<string>", "limit": "<string>" } } '
Your Paragon User Token (JWT), which you can generate using your project's signing keys.
Your Paragon Project ID. You can copy your Project ID from your dashboard URL or by clicking Copy Project ID under the Environment switcher.
Show child attributes
Order IDs : Only return orders matching the IDs provided. You can enter an array or a comma-separated list of IDs. (example: "450789469, 450789470,")
Created After : Only return orders created after the provided date (ISO or Unix timestamp). (example: "2014-04-25T16:15:47-04:00")
Created Before : Only return orders created before the provided date (ISO or Unix timestamp). (example: "2014-04-25T16:15:47-04:00")
Updated after : Only return orders updated after the provided date (ISO or Unix timestamp). (example: "2014-04-25T16:15:47-04:00")
Updated before : Only return orders updated before the provided date (ISO or Unix timestamp). (example: "2014-04-25T16:15:47-04:00")
Limit results : Limit the maximum number of orders to return. Defaults to 250 if left blank. Pagination only accepts the limit field. Other fields cannot be used for filtering the paginated records.
Success
Was this page helpful?