@@ -323,6 +323,7 @@ Some resources are available directly, some resources are only available through
323
323
- [ AbandonedCheckout] ( https://help.shopify.com/api/reference/abandoned_checkouts )
324
324
- [ ApiDeprecations] ( https://shopify.dev/api/admin-rest/2022-04/resources/deprecated-api-calls#get-deprecated-api-calls )
325
325
- [ ApplicationCharge] ( https://help.shopify.com/api/reference/applicationcharge )
326
+ - [ AssignedFulfillmentOrder] ( https://shopify.dev/docs/api/admin-rest/2023-04/resources/assignedfulfillmentorder#get-assigned-fulfillment-orders )
326
327
- [ Blog] ( https://help.shopify.com/api/reference/blog/ )
327
328
- Blog -> [ Article] ( https://help.shopify.com/api/reference/article/ )
328
329
- Blog -> Article -> [ Event] ( https://help.shopify.com/api/reference/event/ )
@@ -520,10 +521,13 @@ The custom methods are specific to some resources which may not be available for
520
521
- Mapped FulfillmentOrder->FulfillmentRequest
521
522
- Mapped Order(id)->FulfillmentOrder
522
523
523
- ```
524
+ ``` php
524
525
// Requesting the FulfilmentOrder for a given order
525
526
$fo = $client->Order("1234567890")->FulfillmentOrder()->get();
526
527
528
+ // Requesting assigned fulfillment orders (with status fulfillment_requested)
529
+ $shopify->AssignedFulfillmentOrder()->get(["assignment_status" => "fulfillment_requested"]);
530
+
527
531
// Creating a FulfilmentRequest
528
532
// Follow instructions to get partial fulfilments
529
533
$fr = $client->FulfillmentOrder('0987654321')->FulfillmentRequest->post([]);
0 commit comments