diff --git a/src/REST/Actions/ManagesFulfillments.php b/src/REST/Actions/ManagesFulfillments.php index 7367883..c58a93f 100644 --- a/src/REST/Actions/ManagesFulfillments.php +++ b/src/REST/Actions/ManagesFulfillments.php @@ -24,6 +24,11 @@ public function getOrderFulfillment($orderId, $fulfillmentId): ApiResource return $this->getResource('fulfillments', $fulfillmentId, ['orders', $orderId]); } + public function createOrderFulfillment($orderId, array $data): ApiResource + { + return $this->createResource('fulfillments', $data, ['orders', $orderId]); + } + public function createFulfillment(array $data): ApiResource { return $this->createResource('fulfillments', $data);