client->makeRequest( '/delivery/shipments', "GET", $parameters ); } /** * Create delivery shipment * * @param array $shipment (default: array()) * @param string $deliveryType (default: string) * @param null $site (default: null) * * @throws \InvalidArgumentException * @throws \RetailCrm\Exception\CurlException * @throws \RetailCrm\Exception\InvalidJsonException * * @return \RetailCrm\Response\ApiResponse */ public function deliveryShipmentsCreate( array $shipment, $deliveryType, $site = null ) { if (!count($shipment)) { throw new \InvalidArgumentException( 'Parameter `shipment` must contains a data' ); } /* @noinspection PhpUndefinedMethodInspection */ return $this->client->makeRequest( '/delivery/shipments/create', "POST", $this->fillSite( $site, [ 'deliveryShipment' => json_encode($shipment), 'deliveryType' => $deliveryType ] ) ); } /** * Get shipment * * @param string $id shipment id * * @throws \InvalidArgumentException * @throws \RetailCrm\Exception\CurlException * @throws \RetailCrm\Exception\InvalidJsonException * * @return \RetailCrm\Response\ApiResponse */ public function deliveryShipmentGet($id) { /* @noinspection PhpUndefinedMethodInspection */ return $this->client->makeRequest( sprintf("/delivery/shipments/%s", $id), "GET" ); } /** * Edit delivery shipment * * @param array $shipment (default: array()) * @param null $site (default: null) * * @throws \InvalidArgumentException * @throws \RetailCrm\Exception\CurlException * @throws \RetailCrm\Exception\InvalidJsonException * * @return \RetailCrm\Response\ApiResponse */ public function deliveryShipmentsEdit(array $shipment, $site = null) { if (!count($shipment)) { throw new \InvalidArgumentException( 'Parameter `shipment` must contains a data' ); } if (empty($shipment['id'])) { throw new \InvalidArgumentException( 'Parameter `shipment` must contains an `id` field' ); } /* @noinspection PhpUndefinedMethodInspection */ return $this->client->makeRequest( sprintf("/delivery/shipments/%s/edit", $shipment['id']), "POST", $this->fillSite( $site, [ 'deliveryShipment' => json_encode($shipment) ] ) ); } }