chengkun
2025-09-12 26c5c0296e7c094f9a7ae4a4bb3c975796992eaf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* This class is autogenerated by the Spapi class generator
* Date of generation: 2022-05-26
* Specification: https://github.com/amzn/selling-partner-api-models/blob/main/models/vendor-shipments-api-model/vendorShipments.json
* Source MD5 signature: 83ee839f52203ffb14dc8bcf2418ace4
*
*
* Selling Partner API for Retail Procurement Shipments
* The Selling Partner API for Retail Procurement Shipments provides programmatic access to retail shipping data for vendors.
*/
namespace DoubleBreak\Spapi\Api;
use DoubleBreak\Spapi\Client;
 
class VendorShipments extends Client {
 
  /**
  * Operation SubmitShipmentConfirmations
  *
  */
  public function SubmitShipmentConfirmations($body = [])
  {
    return $this->send("/vendor/shipping/v1/shipmentConfirmations", [
      'method' => 'POST',
      'json' => $body
    ]);
  }
 
  public function SubmitShipmentConfirmationsAsync($body = [])
  {
    return $this->sendAsync("/vendor/shipping/v1/shipmentConfirmations", [
      'method' => 'POST',
      'json' => $body
    ]);
  }
}