Php Shopify Versions Save

PHP SDK for Shopify API

v1.2.9

7 months ago
  • Add getEmbeddedAppUrl method #307

v1.2.8

8 months ago
  • Add "FulfillmentOrder" and alfabetize properties #297
  • Add the Metafield to the Location Resource #305
  • Shopify API Version updated to 2023-07

v1.2.7

10 months ago
  • Gift Card Adjustment Resource #299

v1.2.6

11 months ago
  • Add total time spent in sleep during multiple requests #292
  • Add support for AssignedFulfillmentOrder resource #295

AssignedFulfillmentOrder Resource

Example:

// Requesting all assigned fulfillment orders
$shopify->AssignedFulfillmentOrder()->get();

// Requesting assigned fulfillment orders (by status)
$shopify->AssignedFulfillmentOrder()->get(["assignment_status" => "fulfillment_requested"]);

// Requesting assigned fulfillment orders (by locations)
$shopify->AssignedFulfillmentOrder()->get(["location_ids" => ["123456789"]]);

v1.2.5

1 year ago
  • add support for Order()->FulfillmentOrder and FulfillmentRequests #278

Support the behavior required by: https://shopify.dev/apps/fulfillment/order-management-apps/manage-fulfillments#request-a-fulfillment https://shopify.dev/api/admin-rest/2022-10/resources/assignedfulfillmentorder

FulfillmentRequest Resource - including actions Mapped FulfillmentOrder->FulfillmentRequest Mapped Order(id)->FulfillmentOrder Example:

// Requesting the FulfilmentOrder for a given order
$fo = $client->Order("1234567890")->FulfillmentOrder()->get();

// Creating a FulfilmentRequest
// Follow instructions to get partial fulfilments
$fr = $client->FulfillmentOrder('0987654321')->FulfillmentRequest->post([]);

// Accepting \ Rejecting a FulfilmentRequest
$fr = $client->FulfillmentOrder('0987654321')->FulfillmentRequest->accept();
$fr = $client->FulfillmentOrder('0987654321')->FulfillmentRequest->reject();

// Communicating fulfillment
$client->Fulfillment->post($body)

v1.2.4

1 year ago
  • Feature - Added API Deprecations Resource #282

v1.2.3

1 year ago
  • #266 - (Fixed) PHP Deprecated: explode(): Passing null to parameter 2

v1.2.2

1 year ago
  • Fulfillment 2022-07 API version #269

v1.2.1

1 year ago
  • Metafield as a child resource of Collection & DraftOrder #267

v1.2.0

1 year ago

Shopify API Version 2022-07

  • Change to 2202-07 version breaks fulfillments #264