選択リスト/フルフィルメント保留API (/ pick lists)
ピックリストAPIを使用して、ピックリストのリストを取得し、フルフィルメントを更新します。
概要
ピックリストAPIを使用して、ピックリストのリストを取得し、フルフィルメントを更新します。選択リストにアクセスするURLは次のとおりです: https :// {your_instance_name}/api/
pick_lists
詳細については、選択リストを参照してください。
アクション
動詞 | パス | アクション | 説明 | ||
---|---|---|---|---|---|
取得 | /api/pick_lists | インデックス | フルフィルメント予約の照会 | ||
投稿 | /api/pick_lists/update_fulfillments | フルフィルメントを更新 | フルフィルメント予約を更新する |
要素
要素 | 説明 | 申請済み | 一意 | 許容値 | In | アウト | データタイプ |
---|---|---|---|---|---|---|---|
created - at | フルフィルメント予約の作成時刻( YYYYY - MM - DDTHH: MM: SS + HH: MMZの形式) | はい | 日時 | ||||
iD | Coupaの内部固有識別 | はい | 整数 | ||||
在庫-残高 | アイテムの在庫残高 | はい | 棚卸資産残高 | ||||
項目 | アイテム | はい | アイテム | ||||
order - line | 注文明細 | はい | OrderLine | ||||
qty - fulfilled | 実行された数量 | はい | 小数( 30,6 ) | ||||
数量順 | 注文された数量 | はい | はい | 小数( 30,6 ) | |||
ステータス | 値は「アクティブ」または「クローズ」にすることができます。 | はい | string (255) | ||||
type | フルフィルメント予約のタイプ。値は、'FulfillmentReservation'または'FulfillmentShortfall'にすることができます | はい | string (255) | ||||
updated - at | フルフィルメント時間予約の更新( YYYYY - MM - DDTHH: MM: SS + HH: MMZの形式) | はい | 日時 | ||||
倉庫 | 商品がある倉庫 | はい | 倉庫 | ||||
warehouse - location | 商品がある倉庫内の場所 | はい | 倉庫の所在地 |
サンプルコール
特定のピックリストを取得する
Https ://{ your_instance_name }/ api/pick_lists? id ={ id}を取得し
ます。
Output
<?xml version="1.0" encoding="UTF-8"?>
<fulfillment-reservations type="array">
<fulfillment-reservation>
<id type="integer">3</id>
2020 <created-at type="dateTime">-02 -17 T 06:52:16 + 01:00</created-at>
<updated-at type="dateTime">2020 -04 -01 T 09:14:19 + 02:00</updated-at>
フルフィルメント<type>予約</type>
<status>active</status>
<qty-ordered type="decimal">1.0</qty-ordered>
<qty-fulfilled type="decimal">0.1</qty-fulfilled>
<item> ... </item>
<inventory-balance>
<id type="integer">211</id>
<created-at type="dateTime">2019 -12 -02 T 21:24:05 + 01:00</created-at>
<updated-at type="dateTime">2020 -04 -01 T 09:14:19 + 02:00</updated-at>
<quantity type="decimal">23.689</quantity>
<allocated type="decimal">0.9</allocated>
<available type="decimal">22.789</available>
<item> ... </item>
<inventory-valuations type="array">
<inventory-valuation>
<id type="integer">206</id>
<created-at type="dateTime">2019 -12 -02 T 21:24:05 + 01:00</created-at>
<updated-at type="dateTime">2020 -04 -01 T 09:14:19 + 02:00</updated-at>
<unit-price type="decimal">12.26</unit-price>
<total type="decimal">290.427140</total>
<currency> ... </currency>
</inventory-valuation>
</inventory-valuations>
<warehouse> ... </warehouse>
<warehouse-location> ... </warehouse-location>
<created-by> ... </created-by>
<updated-by> ... </updated-by>
</inventory-balance>
<warehouse> ... </warehouse>
<warehouse-location> ... </warehouse-location>
</fulfillment-reservation>
</fulfillment-reservations>
フルフィルメント計画を更新
Https ://{ your_instance_name }/ api/pick_lists/update_fulfillmentsに投稿し
ます。
ペイロード
<?xml version="1.0" encoding="UTF-8"?>
<fulfillment-reservation>
<id type="integer">999</id>
<qty-pick-amt>5</qty-pick-amt>
</fulfillment-reservation>