Download OpenAPI specification:Download
物流アウトソーシングサービスの オープンロジ が提供する Web API です。
オープンロジAPIを活用することで物流業務の自動化を行うことができるようになります。
こちらを参照してください。
オープンロジAPIを利用してユーザリソースにアクセスするにはアクセストークンが必要となります。
アクセストークンは以下URLのAPI設定画面より発行することができます。
https://app.openlogi.com/portal/tokens (本番環境)
https://app-demo.openlogi.com/portal/tokens (デモ環境)
※ユーザー管理
より追加したサブアカウントでのアクセストークンの発行はできません
複数クライアントから利用する場合はそれぞれ別のアクセストークンを発行し利用してください。
ここで発行されるアクセストークンは有効期限が無い状態で発行されますので取り扱いにはくれぐれもご注意ください。 不要になったアクセストークンは必ず削除してください。 (アクセストークン漏洩による被害に関しては一切の責任を負いません)
オープンロジAPIを提供するホストは以下のURLになります。
https://api.openlogi.com (本番環境)
https://api-demo.openlogi.com (デモ環境)
アクセスする際には指定のリクエストヘッダーを付与する必要があります。
Key | Description |
---|---|
X-Api-Version | 利用するAPIのバージョン (1.3 / 1.4 / 1.5) |
Authorization | API設定画面にて取得したBearer Token |
例)
X-Api-Version: 1.5
Authorization: Bearer wz2FvCW3NRm4GZgLC7GMlW3XbM2qIIbuCDv8RZ8F
APIリクエストは1分間に約60回を上限とします。
それ以上の頻度で送信する必要がある場合は、弊社までお問い合わせください。
※仕様は変更となる場合があります。
商品の一覧を在庫情報と合わせて取得できます。
商品情報と同じフォーマットのJSONが配列で取得できます。
id required | string Example: id=TS001-I000001,AB001-I000003 商品ID指定 カンマ( |
stock | integer Example: stock=1 在庫情報を含むかどうか |
{- "items": [
- {
- "id": "TS001-I000001",
- "code": "item-002",
- "name": "勇者の盾",
- "price": "1000",
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "barcode": "1234567890128",
- "item_barcodes": [
- "TEST1"
], - "description": "玩具",
- "international_info": {
- "invoice_summary": "Toy",
- "origin": "JP"
}, - "child_items": [
- {
- "id": "TS001-I000003",
- "code": "item-001",
- "quantity": 1
}
], - "tags": [
- "water gun"
], - "stock": {
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "size": "S",
- "weight": 200
}, - "stocks": [
- {
- "warehouse": "NBZ",
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "dispose": "waiting"
}
], - "bundled_item": true,
- "externalCode": "TEST1",
- "hidden": true,
- "temperature_zone": "frozen",
- "fifo": true,
- "lot_limit_type": "expiry",
- "expiry_at_allocatable_days": 20,
- "manufacture_date_allocatable_days": 20,
- "expiry_at": "2021-04-05",
- "manufacture_date": "2021-04-01",
- "lot_allocatable_at": "2021-04-05",
- "lot_allocatable_priority": 1
}
]
}
商品を登録します。
code required | string 商品コード |
name | string 商品名 |
price | any 価格 |
is_reduced_tax | boolean 軽減税率適用商品 |
hs_code | string^\d{4}\.?\d{2}((\.|-)?\d{3,4})?$ HSコード |
barcode | string バーコード |
object 海外発送情報 | |
Array of objects セット商品の子商品リスト | |
tags | Array of strings 商品タグ |
temperature_zone | string Nullable Enum: "dry" "constant" "chilled" "frozen" 保管温度帯 ※温度帯管理を利用するお客様のみ使用可能 |
fifo | boolean Nullable 先入れ先出し ※先入れ先出し管理を利用するお客様のみ使用可能 |
lot_limit_type | string Nullable Enum: "expiry" "manufacture" 期限商品タイプ ※商品マスタ情報。期限管理を利用するお客様のみ使用可能 |
expiry_at_allocatable_days | integer Nullable 引当可能残期間(賞味期限) ※商品マスタ情報。期限管理を利用するお客様のみ使用可能 |
manufacture_date_allocatable_days | integer Nullable 引当可能残期間(製造年月日) ※商品マスタ情報。期限管理を利用するお客様のみ使用可能 |
{- "code": "item-002",
- "name": "勇者の盾",
- "price": "1000",
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "barcode": "1234567890128",
- "international_info": {
- "invoice_summary": "Toy",
- "origin": "JP"
}, - "child_items": [
- {
- "id": "TS001-I000003",
- "code": "item-001",
- "quantity": 1
}
], - "tags": [
- "water gun"
], - "temperature_zone": "frozen",
- "fifo": true,
- "lot_limit_type": "expiry",
- "expiry_at_allocatable_days": 20,
- "manufacture_date_allocatable_days": 20
}
{- "id": "TS001-I000001",
- "code": "item-002",
- "name": "勇者の盾",
- "price": "1000",
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "barcode": "1234567890128",
- "item_barcodes": [
- "TEST1"
], - "description": "玩具",
- "international_info": {
- "invoice_summary": "Toy",
- "origin": "JP"
}, - "child_items": [
- {
- "id": "TS001-I000003",
- "code": "item-001",
- "quantity": 1
}
], - "tags": [
- "water gun"
], - "stock": {
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "size": "S",
- "weight": 200
}, - "stocks": [
- {
- "warehouse": "NBZ",
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "dispose": "waiting"
}
], - "bundled_item": true,
- "externalCode": "TEST1",
- "hidden": true,
- "temperature_zone": "frozen",
- "fifo": true,
- "lot_limit_type": "expiry",
- "expiry_at_allocatable_days": 20,
- "manufacture_date_allocatable_days": 20,
- "expiry_at": "2021-04-05",
- "manufacture_date": "2021-04-01",
- "lot_allocatable_at": "2021-04-05",
- "lot_allocatable_priority": 1
}
商品を一括登録します。
商品登録と同じフォーマットのJSONを配列で送信することで一括登録できます。
Array of objects 商品リスト |
{- "items": [
- {
- "code": "item-002",
- "name": "勇者の盾",
- "price": "1000",
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "barcode": "1234567890128",
- "international_info": {
- "invoice_summary": "Toy",
- "origin": "JP"
}, - "child_items": [
- {
- "id": "TS001-I000003",
- "code": "item-001",
- "quantity": 1
}
], - "tags": [
- "water gun"
], - "temperature_zone": "frozen",
- "fifo": true,
- "lot_limit_type": "expiry",
- "expiry_at_allocatable_days": 20,
- "manufacture_date_allocatable_days": 20
}
]
}
{- "items": [
- {
- "id": "TS001-I000001",
- "code": "item-002",
- "name": "勇者の盾",
- "price": "1000",
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "barcode": "1234567890128",
- "item_barcodes": [
- "TEST1"
], - "description": "玩具",
- "international_info": {
- "invoice_summary": "Toy",
- "origin": "JP"
}, - "child_items": [
- {
- "id": "TS001-I000003",
- "code": "item-001",
- "quantity": 1
}
], - "tags": [
- "water gun"
], - "stock": {
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "size": "S",
- "weight": 200
}, - "stocks": [
- {
- "warehouse": "NBZ",
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "dispose": "waiting"
}
], - "bundled_item": true,
- "externalCode": "TEST1",
- "hidden": true,
- "temperature_zone": "frozen",
- "fifo": true,
- "lot_limit_type": "expiry",
- "expiry_at_allocatable_days": 20,
- "manufacture_date_allocatable_days": 20,
- "expiry_at": "2021-04-05",
- "manufacture_date": "2021-04-01",
- "lot_allocatable_at": "2021-04-05",
- "lot_allocatable_priority": 1
}
]
}
在庫情報を含んだ商品情報を取得できます。
id required | string Example: TS001-I000001 商品ID |
stock | integer Example: stock=1 在庫情報を含むかどうか |
{- "id": "TS001-I000001",
- "code": "item-002",
- "name": "勇者の盾",
- "price": "1000",
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "barcode": "1234567890128",
- "item_barcodes": [
- "TEST1"
], - "description": "玩具",
- "international_info": {
- "invoice_summary": "Toy",
- "origin": "JP"
}, - "child_items": [
- {
- "id": "TS001-I000003",
- "code": "item-001",
- "quantity": 1
}
], - "tags": [
- "water gun"
], - "stock": {
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "size": "S",
- "weight": 200
}, - "stocks": [
- {
- "warehouse": "NBZ",
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "dispose": "waiting"
}
], - "bundled_item": true,
- "externalCode": "TEST1",
- "hidden": true,
- "temperature_zone": "frozen",
- "fifo": true,
- "lot_limit_type": "expiry",
- "expiry_at_allocatable_days": 20,
- "manufacture_date_allocatable_days": 20,
- "expiry_at": "2021-04-05",
- "manufacture_date": "2021-04-01",
- "lot_allocatable_at": "2021-04-05",
- "lot_allocatable_priority": 1
}
商品情報を更新します。
id required | string Example: TS001-I000001 商品ID |
code required | string 商品コード |
name | string 商品名 |
price | any 価格 |
is_reduced_tax | boolean 軽減税率適用商品 |
hs_code | string^\d{4}\.?\d{2}((\.|-)?\d{3,4})?$ HSコード |
barcode | string バーコード |
object 海外発送情報 | |
Array of objects セット商品の子商品リスト | |
tags | Array of strings 商品タグ |
temperature_zone | string Nullable Enum: "dry" "constant" "chilled" "frozen" 保管温度帯 ※温度帯管理を利用するお客様のみ使用可能 |
fifo | boolean Nullable 先入れ先出し ※先入れ先出し管理を利用するお客様のみ使用可能 |
lot_limit_type | string Nullable Enum: "expiry" "manufacture" 期限商品タイプ ※商品マスタ情報。期限管理を利用するお客様のみ使用可能 |
expiry_at_allocatable_days | integer Nullable 引当可能残期間(賞味期限) ※商品マスタ情報。期限管理を利用するお客様のみ使用可能 |
manufacture_date_allocatable_days | integer Nullable 引当可能残期間(製造年月日) ※商品マスタ情報。期限管理を利用するお客様のみ使用可能 |
bundled_item | boolean Nullable 同梱物 |
{- "code": "item-002",
- "name": "勇者の盾",
- "price": "1000",
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "barcode": "1234567890128",
- "international_info": {
- "invoice_summary": "Toy",
- "origin": "JP"
}, - "child_items": [
- {
- "id": "TS001-I000003",
- "code": "item-001",
- "quantity": 1
}
], - "tags": [
- "water gun"
], - "temperature_zone": "frozen",
- "fifo": true,
- "lot_limit_type": "expiry",
- "expiry_at_allocatable_days": 20,
- "manufacture_date_allocatable_days": 20,
- "bundled_item": true
}
{- "id": "TS001-I000001",
- "code": "item-002",
- "name": "勇者の盾",
- "price": "1000",
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "barcode": "1234567890128",
- "item_barcodes": [
- "TEST1"
], - "description": "玩具",
- "international_info": {
- "invoice_summary": "Toy",
- "origin": "JP"
}, - "child_items": [
- {
- "id": "TS001-I000003",
- "code": "item-001",
- "quantity": 1
}
], - "tags": [
- "water gun"
], - "stock": {
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "size": "S",
- "weight": 200
}, - "stocks": [
- {
- "warehouse": "NBZ",
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "dispose": "waiting"
}
], - "bundled_item": true,
- "externalCode": "TEST1",
- "hidden": true,
- "temperature_zone": "frozen",
- "fifo": true,
- "lot_limit_type": "expiry",
- "expiry_at_allocatable_days": 20,
- "manufacture_date_allocatable_days": 20,
- "expiry_at": "2021-04-05",
- "manufacture_date": "2021-04-01",
- "lot_allocatable_at": "2021-04-05",
- "lot_allocatable_priority": 1
}
商品を削除します。
入庫依頼中および入庫実績があるアイテムは削除できません。
id required | string Example: TS001-I000001 商品ID |
{ }
{- "id": "TS001-I000001",
- "code": "item-002",
- "name": "勇者の盾",
- "price": "1000",
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "barcode": "1234567890128",
- "item_barcodes": [
- "TEST1"
], - "description": "玩具",
- "international_info": {
- "invoice_summary": "Toy",
- "origin": "JP"
}, - "child_items": [
- {
- "id": "TS001-I000003",
- "code": "item-001",
- "quantity": 1
}
], - "tags": [
- "water gun"
], - "stock": {
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "size": "S",
- "weight": 200
}, - "stocks": [
- {
- "warehouse": "NBZ",
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "dispose": "waiting"
}
], - "bundled_item": true,
- "externalCode": "TEST1",
- "hidden": true,
- "temperature_zone": "frozen",
- "fifo": true,
- "lot_limit_type": "expiry",
- "expiry_at_allocatable_days": 20,
- "manufacture_date_allocatable_days": 20,
- "expiry_at": "2021-04-05",
- "manufacture_date": "2021-04-01",
- "lot_allocatable_at": "2021-04-05",
- "lot_allocatable_priority": 1
}
商品の画像を登録します。 jpeg, png タイプのファイルを指定できます。
multipart/form-data 形式でファイルを送信します。
Content-Disposition の name は file を指定してください。
ファイル名は Content-Disposition の filename で指定してください。
ファイル名がマルチバイトの場合は UTF-8 エンコードした値を指定してください。
id required | string Example: TS001-I000001 商品ID |
name | string |
filename | string |
{- "id": 1234
}
商品の一覧を在庫情報と合わせて取得できます。
商品情報と同じフォーマットのJSONが配列で取得できます。
account_id required | string Example: AB001 アカウントコード |
identifier required | string Example: identifier=123456-098765,12345678,AB12345 商品識別番号 カンマ( |
code required | string Example: code=DQ001,DQ002 商品コード カンマ( |
stock | integer Example: stock=1 在庫情報を含むかどうか |
{- "items": [
- {
- "id": "TS001-I000001",
- "code": "item-002",
- "name": "勇者の盾",
- "price": "1000",
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "barcode": "1234567890128",
- "item_barcodes": [
- "TEST1"
], - "description": "玩具",
- "international_info": {
- "invoice_summary": "Toy",
- "origin": "JP"
}, - "child_items": [
- {
- "id": "TS001-I000003",
- "code": "item-001",
- "quantity": 1
}
], - "tags": [
- "water gun"
], - "stock": {
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "size": "S",
- "weight": 200
}, - "stocks": [
- {
- "warehouse": "NBZ",
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "dispose": "waiting"
}
], - "bundled_item": true,
- "externalCode": "TEST1",
- "hidden": true,
- "temperature_zone": "frozen",
- "fifo": true,
- "lot_limit_type": "expiry",
- "expiry_at_allocatable_days": 20,
- "manufacture_date_allocatable_days": 20,
- "expiry_at": "2021-04-05",
- "manufacture_date": "2021-04-01",
- "lot_allocatable_at": "2021-04-05",
- "lot_allocatable_priority": 1
}
]
}
在庫情報を含んだ商品情報を取得できます。
account_id required | string Example: AB001 アカウントコード |
code required | string Example: item-001 商品コード |
stock | integer Example: stock=1 在庫情報を含むかどうか |
{- "id": "TS001-I000001",
- "code": "item-002",
- "name": "勇者の盾",
- "price": "1000",
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "barcode": "1234567890128",
- "item_barcodes": [
- "TEST1"
], - "description": "玩具",
- "international_info": {
- "invoice_summary": "Toy",
- "origin": "JP"
}, - "child_items": [
- {
- "id": "TS001-I000003",
- "code": "item-001",
- "quantity": 1
}
], - "tags": [
- "water gun"
], - "stock": {
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "size": "S",
- "weight": 200
}, - "stocks": [
- {
- "warehouse": "NBZ",
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "dispose": "waiting"
}
], - "bundled_item": true,
- "externalCode": "TEST1",
- "hidden": true,
- "temperature_zone": "frozen",
- "fifo": true,
- "lot_limit_type": "expiry",
- "expiry_at_allocatable_days": 20,
- "manufacture_date_allocatable_days": 20,
- "expiry_at": "2021-04-05",
- "manufacture_date": "2021-04-01",
- "lot_allocatable_at": "2021-04-05",
- "lot_allocatable_priority": 1
}
商品情報を更新します。
account_id required | string Example: AB001 アカウントコード |
code required | string Example: item-001 商品コード |
code required | string 商品コード |
name | string 商品名 |
price | any 価格 |
is_reduced_tax | boolean 軽減税率適用商品 |
hs_code | string^\d{4}\.?\d{2}((\.|-)?\d{3,4})?$ HSコード |
barcode | string バーコード |
object 海外発送情報 | |
Array of objects セット商品の子商品リスト | |
tags | Array of strings 商品タグ |
temperature_zone | string Nullable Enum: "dry" "constant" "chilled" "frozen" 保管温度帯 ※温度帯管理を利用するお客様のみ使用可能 |
fifo | boolean Nullable 先入れ先出し ※先入れ先出し管理を利用するお客様のみ使用可能 |
lot_limit_type | string Nullable Enum: "expiry" "manufacture" 期限商品タイプ ※商品マスタ情報。期限管理を利用するお客様のみ使用可能 |
expiry_at_allocatable_days | integer Nullable 引当可能残期間(賞味期限) ※商品マスタ情報。期限管理を利用するお客様のみ使用可能 |
manufacture_date_allocatable_days | integer Nullable 引当可能残期間(製造年月日) ※商品マスタ情報。期限管理を利用するお客様のみ使用可能 |
bundled_item | boolean Nullable 同梱物 |
{- "code": "item-002",
- "name": "勇者の盾",
- "price": "1000",
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "barcode": "1234567890128",
- "international_info": {
- "invoice_summary": "Toy",
- "origin": "JP"
}, - "child_items": [
- {
- "id": "TS001-I000003",
- "code": "item-001",
- "quantity": 1
}
], - "tags": [
- "water gun"
], - "temperature_zone": "frozen",
- "fifo": true,
- "lot_limit_type": "expiry",
- "expiry_at_allocatable_days": 20,
- "manufacture_date_allocatable_days": 20,
- "bundled_item": true
}
{- "id": "TS001-I000001",
- "code": "item-002",
- "name": "勇者の盾",
- "price": "1000",
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "barcode": "1234567890128",
- "item_barcodes": [
- "TEST1"
], - "description": "玩具",
- "international_info": {
- "invoice_summary": "Toy",
- "origin": "JP"
}, - "child_items": [
- {
- "id": "TS001-I000003",
- "code": "item-001",
- "quantity": 1
}
], - "tags": [
- "water gun"
], - "stock": {
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "size": "S",
- "weight": 200
}, - "stocks": [
- {
- "warehouse": "NBZ",
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "dispose": "waiting"
}
], - "bundled_item": true,
- "externalCode": "TEST1",
- "hidden": true,
- "temperature_zone": "frozen",
- "fifo": true,
- "lot_limit_type": "expiry",
- "expiry_at_allocatable_days": 20,
- "manufacture_date_allocatable_days": 20,
- "expiry_at": "2021-04-05",
- "manufacture_date": "2021-04-01",
- "lot_allocatable_at": "2021-04-05",
- "lot_allocatable_priority": 1
}
商品を削除します。
入庫依頼中および入庫実績があるアイテムは削除できません。
account_id required | string Example: AB001 アカウントコード |
code required | string Example: item-001 商品コード |
{ }
{- "id": "TS001-I000001",
- "code": "item-002",
- "name": "勇者の盾",
- "price": "1000",
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "barcode": "1234567890128",
- "item_barcodes": [
- "TEST1"
], - "description": "玩具",
- "international_info": {
- "invoice_summary": "Toy",
- "origin": "JP"
}, - "child_items": [
- {
- "id": "TS001-I000003",
- "code": "item-001",
- "quantity": 1
}
], - "tags": [
- "water gun"
], - "stock": {
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "size": "S",
- "weight": 200
}, - "stocks": [
- {
- "warehouse": "NBZ",
- "available": 1,
- "shipping": 1,
- "reserved": 1,
- "backordered": 1,
- "quantity": 1,
- "dispose": "waiting"
}
], - "bundled_item": true,
- "externalCode": "TEST1",
- "hidden": true,
- "temperature_zone": "frozen",
- "fifo": true,
- "lot_limit_type": "expiry",
- "expiry_at_allocatable_days": 20,
- "manufacture_date_allocatable_days": 20,
- "expiry_at": "2021-04-05",
- "manufacture_date": "2021-04-01",
- "lot_allocatable_at": "2021-04-05",
- "lot_allocatable_priority": 1
}
商品の画像を登録します。 jpeg, png タイプのファイルを指定できます。
multipart/form-data 形式でファイルを送信します。
Content-Disposition の name は file を指定してください。
ファイル名は Content-Disposition の filename で指定してください。
ファイル名がマルチバイトの場合は UTF-8 エンコードした値を指定してください。
account_id required | string Example: AB001 アカウントコード |
code required | string Example: item-001 商品コード |
name | string |
filename | string |
{- "id": 1234
}
{- "warehousings": [
- {
- "id": "TS001-W0001",
- "status": "waiting",
- "arrival_date": "2019-04-22",
- "arrival_date_confirmed": true,
- "arrival_time_from": 10,
- "arrival_time_to": 13,
- "sales_method": "RESERVATION",
- "shipping_scheduled_date": "2019-04-29",
- "stock_deadline_date": "2019-04-24",
- "identifier": "Identifier001",
- "inspection_type": "CODE",
- "transport_mode": "",
- "identity_type": "ID_OR_LABEL",
- "identity_values": [
- "string"
], - "tracking_codes": [
- "TrackingCode001"
], - "vehicle_code": "string",
- "vehicle_size": "UNDER_2T",
- "carrying_method": "PALETTE",
- "container_no": "string",
- "driver_info": "string",
- "company_memo": "string",
- "items": [
- {
- "id": "TS001-I00001",
- "code": "sword-001",
- "name": "勇者の盾",
- "quantity": 1,
- "received": 1,
- "lot_items": [
- {
- "id": "TS001-I00001",
- "expiry_at": "2022-04-22",
- "manufacture_date": "2022-04-22",
- "lot_allocatable_at": "2022-04-22",
- "received": 1
}
], - "cases": [
- {
- "quantity_in_case": 10,
- "quantity": 3
}
], - "warehoused_count": 1
}
], - "shipment_return": false,
- "warehouse_info": {
- "postcode": "94043",
- "address": "東京都 豊島区東池袋1-34-5 いちご東池袋ビル9F",
- "name": "XXX倉庫"
}, - "created_at": "2019-04-01T03:00:00.000Z"
}
]
}
入庫依頼を作成します。
実際の入庫処理をするには別途入庫明細書と入庫ラベルが必要になります。
オープンロジの入庫依頼中の画面より入庫明細書兼入庫ラベルを印刷し、 入庫明細書を同梱した上で入庫ラベルを箱に貼って倉庫宛に発送ください。
inspection_type required | string Enum: "ID" "NAME" "CODE" "BARCODE" "LABEL" 検品タイプ(オープンロジ商品ID、商品名、商品コード、管理バーコード、オープンロジ商品ラベル) |
required | Array of objects 入庫商品リスト |
arrival_date required | string 倉庫着予定日 |
arrival_date_confirmed | boolean 確定情報として登録 倉庫着予定日が確定されていればtrueを指定してください |
arrival_time_from | integer 倉庫着予定時間(いつから) 0 ~ 23の数値が指定可能です |
arrival_time_to | integer 倉庫着予定時間(いつまで) 0 ~ 23の数値が指定可能です |
sales_method | string Enum: "INVENTORY" "RESERVATION" "OTHER" 販売方法
|
shipping_scheduled_date | string 出庫予定日 販売方法が |
transport_mode | string Enum: "" "HOME_DELIVERY" "CHARTER" "CONTAINER" 配送方法 入庫する際の配送方法を指定できます
※入庫依頼作成時に、このパラメータが未指定の場合、 |
identity_type | string Enum: "ID_OR_LABEL" "SUPPLIER" "TRACKING_CODE" "VEHICLE_CODE" "CONTAINER" 入庫特定項目 ※入庫ラベルなし入庫を利用するお客様のみ使用可能 倉庫で入庫を特定する際のキーとなる項目を指定できます 許可された項目のみ指定可能です
※入庫依頼新規作成時に、このパラメータが未指定の場合、 |
identity_values | Array of strings 入庫特定情報 ※入庫ラベルなし入庫を利用するお客様のみ使用可能 入庫特定項目に対応した値を指定できます 入庫特定項目が 入庫特定項目が |
tracking_codes | Array of strings お問合せ伝票番号 ※配送方法が |
vehicle_code | string 車両番号 商品を倉庫へ送る際のチャーターやコンテナを載せる車両の番号を指定します 配送方法が |
vehicle_size | string Enum: "UNDER_2T" "4T" "10T" "20FT" "40FT" 車両サイズ 車両やコンテナのサイズを指定できます
配送方法が |
carrying_method | string Enum: "PALETTE" "BARA" 積載方法 個口の積載方法を指定できます
配送方法が |
container_no | string コンテナID 配送方法が |
driver_info | string ドライバー情報 配送方法が |
company_memo | string 入庫メモ お客様用の入庫のメモです |
identifier | string 入庫依頼識別子 |
{- "inspection_type": "CODE",
- "items": [
- {
- "code": "sword-001",
- "quantity": 1
}
], - "arrival_date": "2019-04-22",
- "arrival_date_confirmed": true,
- "arrival_time_from": 10,
- "arrival_time_to": 13,
- "sales_method": "RESERVATION",
- "shipping_scheduled_date": "2019-04-29",
- "transport_mode": "",
- "identity_type": "ID_OR_LABEL",
- "identity_values": [
- "string"
], - "tracking_codes": [
- "TrackingCode001"
], - "vehicle_code": "string",
- "vehicle_size": "UNDER_2T",
- "carrying_method": "PALETTE",
- "container_no": "string",
- "driver_info": "string",
- "company_memo": "string",
- "identifier": "Identifier001"
}
{- "id": "TS001-W0001",
- "status": "waiting",
- "arrival_date": "2019-04-22",
- "arrival_date_confirmed": true,
- "arrival_time_from": 10,
- "arrival_time_to": 13,
- "sales_method": "RESERVATION",
- "shipping_scheduled_date": "2019-04-29",
- "stock_deadline_date": "2019-04-24",
- "identifier": "Identifier001",
- "inspection_type": "CODE",
- "transport_mode": "",
- "identity_type": "ID_OR_LABEL",
- "identity_values": [
- "string"
], - "tracking_codes": [
- "TrackingCode001"
], - "vehicle_code": "string",
- "vehicle_size": "UNDER_2T",
- "carrying_method": "PALETTE",
- "container_no": "string",
- "driver_info": "string",
- "company_memo": "string",
- "items": [
- {
- "id": "TS001-I00001",
- "code": "sword-001",
- "name": "勇者の盾",
- "quantity": 1,
- "received": 1,
- "lot_items": [
- {
- "id": "TS001-I00001",
- "expiry_at": "2022-04-22",
- "manufacture_date": "2022-04-22",
- "lot_allocatable_at": "2022-04-22",
- "received": 1
}
], - "cases": [
- {
- "quantity_in_case": 10,
- "quantity": 3
}
]
}
], - "shipment_return": false,
- "warehouse_info": {
- "postcode": "94043",
- "address": "東京都 豊島区東池袋1-34-5 いちご東池袋ビル9F",
- "name": "XXX倉庫"
}, - "created_at": "2019-04-01T03:00:00.000Z"
}
{- "id": "TS001-W0001",
- "status": "waiting",
- "arrival_date": "2019-04-22",
- "arrival_date_confirmed": true,
- "arrival_time_from": 10,
- "arrival_time_to": 13,
- "sales_method": "RESERVATION",
- "shipping_scheduled_date": "2019-04-29",
- "stock_deadline_date": "2019-04-24",
- "identifier": "Identifier001",
- "inspection_type": "CODE",
- "transport_mode": "",
- "identity_type": "ID_OR_LABEL",
- "identity_values": [
- "string"
], - "tracking_codes": [
- "TrackingCode001"
], - "vehicle_code": "string",
- "vehicle_size": "UNDER_2T",
- "carrying_method": "PALETTE",
- "container_no": "string",
- "driver_info": "string",
- "company_memo": "string",
- "items": [
- {
- "id": "TS001-I00001",
- "code": "sword-001",
- "name": "勇者の盾",
- "quantity": 1,
- "received": 1,
- "lot_items": [
- {
- "id": "TS001-I00001",
- "expiry_at": "2022-04-22",
- "manufacture_date": "2022-04-22",
- "lot_allocatable_at": "2022-04-22",
- "received": 1
}
], - "cases": [
- {
- "quantity_in_case": 10,
- "quantity": 3
}
], - "warehoused_count": 1
}
], - "shipment_return": false,
- "warehouse_info": {
- "postcode": "94043",
- "address": "東京都 豊島区東池袋1-34-5 いちご東池袋ビル9F",
- "name": "XXX倉庫"
}, - "created_at": "2019-04-01T03:00:00.000Z"
}
依頼中の出庫依頼を更新します。
ステータスによっては更新できません。
id required | string Example: AB001-W0001 入庫ID |
inspection_type required | string Enum: "ID" "NAME" "CODE" "BARCODE" "LABEL" 検品タイプ(オープンロジ商品ID、商品名、商品コード、管理バーコード、オープンロジ商品ラベル) |
required | Array of objects 入庫商品リスト |
arrival_date required | string 倉庫着予定日 |
arrival_date_confirmed | boolean 確定情報として登録 倉庫着予定日が確定されていればtrueを指定してください |
arrival_time_from | integer 倉庫着予定時間(いつから) 0 ~ 23の数値が指定可能です |
arrival_time_to | integer 倉庫着予定時間(いつまで) 0 ~ 23の数値が指定可能です |
sales_method | string Enum: "INVENTORY" "RESERVATION" "OTHER" 販売方法
|
shipping_scheduled_date | string 出庫予定日 販売方法が |
transport_mode | string Enum: "" "HOME_DELIVERY" "CHARTER" "CONTAINER" 配送方法 入庫する際の配送方法を指定できます
※入庫依頼作成時に、このパラメータが未指定の場合、 |
identity_type | string Enum: "ID_OR_LABEL" "SUPPLIER" "TRACKING_CODE" "VEHICLE_CODE" "CONTAINER" 入庫特定項目 ※入庫ラベルなし入庫を利用するお客様のみ使用可能 倉庫で入庫を特定する際のキーとなる項目を指定できます 許可された項目のみ指定可能です
※入庫依頼新規作成時に、このパラメータが未指定の場合、 |
identity_values | Array of strings 入庫特定情報 ※入庫ラベルなし入庫を利用するお客様のみ使用可能 入庫特定項目に対応した値を指定できます 入庫特定項目が 入庫特定項目が |
tracking_codes | Array of strings お問合せ伝票番号 ※配送方法が |
vehicle_code | string 車両番号 商品を倉庫へ送る際のチャーターやコンテナを載せる車両の番号を指定します 配送方法が |
vehicle_size | string Enum: "UNDER_2T" "4T" "10T" "20FT" "40FT" 車両サイズ 車両やコンテナのサイズを指定できます
配送方法が |
carrying_method | string Enum: "PALETTE" "BARA" 積載方法 個口の積載方法を指定できます
配送方法が |
container_no | string コンテナID 配送方法が |
driver_info | string ドライバー情報 配送方法が |
company_memo | string 入庫メモ お客様用の入庫のメモです |
identifier | string 入庫依頼識別子 |
{- "inspection_type": "CODE",
- "items": [
- {
- "code": "sword-001",
- "quantity": 1
}
], - "arrival_date": "2019-04-22",
- "arrival_date_confirmed": true,
- "arrival_time_from": 10,
- "arrival_time_to": 13,
- "sales_method": "RESERVATION",
- "shipping_scheduled_date": "2019-04-29",
- "transport_mode": "",
- "identity_type": "ID_OR_LABEL",
- "identity_values": [
- "string"
], - "tracking_codes": [
- "TrackingCode001"
], - "vehicle_code": "string",
- "vehicle_size": "UNDER_2T",
- "carrying_method": "PALETTE",
- "container_no": "string",
- "driver_info": "string",
- "company_memo": "string",
- "identifier": "Identifier001"
}
{- "id": "TS001-W0001",
- "status": "waiting",
- "arrival_date": "2019-04-22",
- "arrival_date_confirmed": true,
- "arrival_time_from": 10,
- "arrival_time_to": 13,
- "sales_method": "RESERVATION",
- "shipping_scheduled_date": "2019-04-29",
- "stock_deadline_date": "2019-04-24",
- "identifier": "Identifier001",
- "inspection_type": "CODE",
- "transport_mode": "",
- "identity_type": "ID_OR_LABEL",
- "identity_values": [
- "string"
], - "tracking_codes": [
- "TrackingCode001"
], - "vehicle_code": "string",
- "vehicle_size": "UNDER_2T",
- "carrying_method": "PALETTE",
- "container_no": "string",
- "driver_info": "string",
- "company_memo": "string",
- "items": [
- {
- "id": "TS001-I00001",
- "code": "sword-001",
- "name": "勇者の盾",
- "quantity": 1,
- "received": 1,
- "lot_items": [
- {
- "id": "TS001-I00001",
- "expiry_at": "2022-04-22",
- "manufacture_date": "2022-04-22",
- "lot_allocatable_at": "2022-04-22",
- "received": 1
}
], - "cases": [
- {
- "quantity_in_case": 10,
- "quantity": 3
}
]
}
], - "shipment_return": false,
- "warehouse_info": {
- "postcode": "94043",
- "address": "東京都 豊島区東池袋1-34-5 いちご東池袋ビル9F",
- "name": "XXX倉庫"
}, - "created_at": "2019-04-01T03:00:00.000Z"
}
入庫依頼をキャンセルします。
ステータスによってはキャンセルできません。
id required | string Example: AB001-W0001 入庫ID |
{ }
{- "id": "TS001-W0001",
- "status": "waiting",
- "arrival_date": "2019-04-22",
- "arrival_date_confirmed": true,
- "arrival_time_from": 10,
- "arrival_time_to": 13,
- "sales_method": "RESERVATION",
- "shipping_scheduled_date": "2019-04-29",
- "stock_deadline_date": "2019-04-24",
- "identifier": "Identifier001",
- "inspection_type": "CODE",
- "transport_mode": "",
- "identity_type": "ID_OR_LABEL",
- "identity_values": [
- "string"
], - "tracking_codes": [
- "TrackingCode001"
], - "vehicle_code": "string",
- "vehicle_size": "UNDER_2T",
- "carrying_method": "PALETTE",
- "container_no": "string",
- "driver_info": "string",
- "company_memo": "string",
- "items": [
- {
- "id": "TS001-I00001",
- "code": "sword-001",
- "name": "勇者の盾",
- "quantity": 1,
- "received": 1,
- "lot_items": [
- {
- "id": "TS001-I00001",
- "expiry_at": "2022-04-22",
- "manufacture_date": "2022-04-22",
- "lot_allocatable_at": "2022-04-22",
- "received": 1
}
], - "cases": [
- {
- "quantity_in_case": 10,
- "quantity": 3
}
]
}
], - "shipment_return": false,
- "warehouse_info": {
- "postcode": "94043",
- "address": "東京都 豊島区東池袋1-34-5 いちご東池袋ビル9F",
- "name": "XXX倉庫"
}, - "created_at": "2019-04-01T03:00:00.000Z"
}
直近の入庫実績を取得します。
date_before | string Example: date_before=20190101 指定日以前の最終入庫日の入庫実績(YYYYMMDD) |
date_after | string Example: date_after=20190401 指定日以降の初回入庫日の入庫実績(YYYYMMDD) |
{- "warehousings": [
- {
- "id": "TS001-W0001",
- "status": "waiting",
- "arrival_date": "2019-04-22",
- "arrival_date_confirmed": true,
- "arrival_time_from": 10,
- "arrival_time_to": 13,
- "sales_method": "RESERVATION",
- "shipping_scheduled_date": "2019-04-29",
- "stock_deadline_date": "2019-04-24",
- "identifier": "Identifier001",
- "inspection_type": "CODE",
- "transport_mode": "",
- "identity_type": "ID_OR_LABEL",
- "identity_values": [
- "string"
], - "tracking_codes": [
- "TrackingCode001"
], - "vehicle_code": "string",
- "vehicle_size": "UNDER_2T",
- "carrying_method": "PALETTE",
- "container_no": "string",
- "driver_info": "string",
- "company_memo": "string",
- "items": [
- {
- "id": "TS001-I00001",
- "code": "sword-001",
- "name": "勇者の盾",
- "quantity": 1,
- "received": 1,
- "lot_items": [
- {
- "id": "TS001-I00001",
- "expiry_at": "2022-04-22",
- "manufacture_date": "2022-04-22",
- "lot_allocatable_at": "2022-04-22",
- "received": 1
}
], - "cases": [
- {
- "quantity_in_case": 10,
- "quantity": 3
}
], - "warehoused_count": 1
}
], - "shipment_return": false,
- "warehouse_info": {
- "postcode": "94043",
- "address": "東京都 豊島区東池袋1-34-5 いちご東池袋ビル9F",
- "name": "XXX倉庫"
}, - "created_at": "2019-04-01T03:00:00.000Z"
}
]
}
指定年月日の入庫実績を取得します。
year | string Example: 2019 入庫年(YYYY) |
month | string Example: 04 入庫月(MM) |
day | string Example: 01 入庫日(DD) |
{- "warehousings": [
- {
- "id": "TS001-W0001",
- "status": "waiting",
- "arrival_date": "2019-04-22",
- "arrival_date_confirmed": true,
- "arrival_time_from": 10,
- "arrival_time_to": 13,
- "sales_method": "RESERVATION",
- "shipping_scheduled_date": "2019-04-29",
- "stock_deadline_date": "2019-04-24",
- "identifier": "Identifier001",
- "inspection_type": "CODE",
- "transport_mode": "",
- "identity_type": "ID_OR_LABEL",
- "identity_values": [
- "string"
], - "tracking_codes": [
- "TrackingCode001"
], - "vehicle_code": "string",
- "vehicle_size": "UNDER_2T",
- "carrying_method": "PALETTE",
- "container_no": "string",
- "driver_info": "string",
- "company_memo": "string",
- "items": [
- {
- "id": "TS001-I00001",
- "code": "sword-001",
- "name": "勇者の盾",
- "quantity": 1,
- "received": 1,
- "lot_items": [
- {
- "id": "TS001-I00001",
- "expiry_at": "2022-04-22",
- "manufacture_date": "2022-04-22",
- "lot_allocatable_at": "2022-04-22",
- "received": 1
}
], - "cases": [
- {
- "quantity_in_case": 10,
- "quantity": 3
}
], - "warehoused_count": 1
}
], - "shipment_return": false,
- "warehouse_info": {
- "postcode": "94043",
- "address": "東京都 豊島区東池袋1-34-5 いちご東池袋ビル9F",
- "name": "XXX倉庫"
}, - "created_at": "2019-04-01T03:00:00.000Z"
}
]
}
依頼中の出庫依頼を取得します。
出庫IDまたは識別番号を指定した場合は、依頼中以外も取得します。
id | string Example: id=TS001-S000001,AB001-S000003 出庫ID指定 カンマ( |
{- "shipments": [
- {
- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "shipping_date": "2019-04-02",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "shipment_return": true,
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "assigned_temperature_zone": "frozen",
- "purpose": "GIFT",
- "allocate_priority": 0,
- "shipped_at": "2019-04-01",
- "tracking_code": "123456789012",
- "tracking_codes": [
- "123456789012"
], - "delivery_service": "YAMATO-TAKKYUBIN",
- "package_quantity": 1,
- "packages": [
- {
- "size": "S",
- "weight": 1000,
- "tracking_code": "EL999999999JP"
}
], - "cases": {
- "item_id": 10,
- "details": [
- {
- "quantity_in_case": 10,
- "quantity": 2
}
]
}
}
]
}
出庫を特定するキーとして identifier が利用されます
identifier が指定されていない場合は order_no が identifier として利用されます
identifier と order_no のいずれかの指定が必須となります
identifier required | string Nullable 識別番号 |
order_no | string Nullable 注文番号 (同梱明細書の「注文番号」に印刷されます) |
国内住所 (object) or 海外住所 (object) 発送元住所 (省略時は登録してある情報が使われます) | |
subtotal_amount | any Nullable 納品書 小計 |
delivery_charge | any Nullable 納品書 配送料 |
handling_charge | any Nullable 納品書 手数料 |
discount_amount | any Nullable 納品書 割引額 |
total_amount | any Nullable 納品書 合計 |
cushioning_unit | string Nullable Enum: "ORDER" "ITEM" 緩衝材単位(注文単位、もしくは商品単位で緩衝材指定します。別途料金が発生します) |
cushioning_type | string Nullable Enum: "BUBBLE_PACK" "BUBBLE_DOUBLE_PACK" 緩衝材種別(プチプチ、プチプチ2重) 注文単位で緩衝材を利用する場合に指定することができます |
gift_wrapping_unit | string Nullable Enum: "ORDER" "ITEM" ギフトラッピング単位 (注文単位、もしくは商品単位でラッピングします。別途料金が発生します) |
gift_wrapping_type | string Nullable Enum: "NAVY" "RED" ギフトラッピングタイプ 注文単位でラッピングする場合に指定することができます |
gift_sender_name | string Nullable ギフト贈り主氏名 |
bundled_items | Array of strings Nullable 同梱物の商品ID or 商品コード (5つまで) |
shipping_email | string Nullable 配送先連絡メール |
delivery_note_type | string Nullable Enum: "NOT_INCLUDE_PII" "NONE" 明細書の同梱設定
|
price_on_delivery_note | boolean Nullable 明細書への金額印字指定 (falseの場合には印字されません) |
message | string Nullable 明細書メッセージ |
suspend | boolean 保留フラグ |
shipping_date | string 出庫希望日 (指定された日付以降に倉庫で出荷作業が行われます。倉庫の作業状況次第では指定日以降に出荷となる場合があります) |
tax | string Nullable 税 |
total_with_normal_tax | any 総計通常税率 (1つ以上の軽減税率適用商品が含まれる場合に指定可能) |
total_with_reduced_tax | any 総計軽減税率 (1つ以上の軽減税率適用商品が含まれる場合に指定可能) |
required | 国内住所 (object) or 海外住所 (object) 発送先住所 (海外出庫の場合はregion_codeを指定する必要が有ります) |
delivery_carrier | string Nullable Enum: "YAMATO" "SAGAWA" 配送会社 (別途料金が発生します) 国内発送の場合に指定可能 |
delivery_time_slot | string Nullable Enum: "AM" "12" "14" "16" "18" "19" 希望時間指定 (12はSAGAWAの場合のみ) 国内発送の場合に指定可能 |
delivery_date | string Nullable 配達希望日 (指定できる最短日付は配送会社によって変わります) 国内発送の場合に指定可能 |
cash_on_delivery | boolean 代金引換指定 (trueを指定したときだけ代金引換となります) |
total_for_cash_on_delivery | any 代金引換総計 (代金引換の場合のみ指定可能) |
tax_for_cash_on_delivery | any 代金引換消費税 (代金引換の場合のみ指定可能) |
delivery_method | string Nullable Enum: "POST_EXPRESS" "HOME_BOX" 配送便指定
SSサイズの商品のみの発送の場合に、このパラメータの省略時にはPOST_EXPRESSが設定されます |
object Nullable 受取人からの希望 | |
warehouse | string Nullable 倉庫コード |
required | Array of objects 配送商品リスト |
international | boolean 海外発送指定 |
delivery_service | string Enum: "SAGAWA-HIKYAKU-YU-PACKET" "SAGAWA-TAKUHAIBIN" "SAGAWA-COOLBIN" "YAMATO-NEKOPOSU" "YAMATO-TAKKYUBIN" "YAMATO-COOLBIN" "JAPANPOST-EMS" "JAPANPOST-EPACKET" "JAPANPOST-YU-PACKET" "FEDEX-PRIORITY" "FEDEX-CONNECT-PLUS" "DHL-EXPRESS" Sagawa
Yamato
Japan Post
Fedex
DHL
|
currency_code | string 海外発送用通貨コード。海外発送時必須。 ※通貨情報参照 |
insurance | boolean 海外発送用損害保証制度の加入希望。 |
backorder_if_unavailable | boolean 在庫不足時、出庫予約としての登録許可。 |
purpose | string 海外発送用輸出目的。EMS/小形包装物 書留/DHL/Fedexの場合に指定可能
|
allocate_priority | integer 引当優先順位 |
apply_rule | boolean 出庫ルール適用フラグ 出庫ルールによる商品追加で在庫不足が発生する場合、出庫依頼単位の |
{- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": "170-0013",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "name": "山田 太郎",
- "company": "スライム株式会社",
- "division": "メタル部",
- "phone": "03-3333-3333"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "total_with_normal_tax": 0,
- "total_with_reduced_tax": 1000,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ORDER",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "suspend": false,
- "shipping_date": "2019-04-02",
- "recipient": {
- "postcode": "170-0013",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "name": "山田 太郎",
- "company": "スライム株式会社",
- "division": "メタル部",
- "phone": "03-3333-3333"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "cash_on_delivery": false,
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "warehouse": "OPL",
- "items": [
- {
- "code": "item-001",
- "quantity": 1,
- "name": "勇者の盾",
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "backorder_if_unavailable": false
}
], - "international": false
}
{- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "shipping_date": "2019-04-02",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "purpose": "GIFT",
- "allocate_priority": 0
}
出庫依頼作成と同じフォーマットのJSONを配列で送信することで一括登録できます。
required | Array of objects |
apply_rule | boolean 出庫ルール適用フラグ 出庫ルールによる商品追加で在庫不足が発生する場合、出庫依頼単位の |
{- "shipments": [
- {
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": "170-0013",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "name": "山田 太郎",
- "company": "スライム株式会社",
- "division": "メタル部",
- "phone": "03-3333-3333"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "total_with_normal_tax": 0,
- "total_with_reduced_tax": 1000,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ORDER",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "suspend": false,
- "shipping_date": "2019-04-02",
- "recipient": {
- "postcode": "170-0013",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "name": "山田 太郎",
- "company": "スライム株式会社",
- "division": "メタル部",
- "phone": "03-3333-3333"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "cash_on_delivery": false,
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "warehouse": "OPL",
- "items": [
- {
- "code": "item-001",
- "quantity": 1,
- "name": "勇者の盾",
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "backorder_if_unavailable": false
}
], - "international": false
}
]
}
{- "shipments": [
- {
- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "shipping_date": "2019-04-02",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "purpose": "GIFT",
- "allocate_priority": 0
}
]
}
依頼中の出庫を取得します。
出庫IDまたは識別番号を指定した場合は、依頼中以外も取得します。
id required | string Example: id=TS001-S000001 出庫ID指定 |
{- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "shipping_date": "2019-04-02",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "shipment_return": true,
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "assigned_temperature_zone": "frozen",
- "purpose": "GIFT",
- "allocate_priority": 0,
- "shipped_at": "2019-04-01",
- "tracking_code": "123456789012",
- "tracking_codes": [
- "123456789012"
], - "delivery_service": "YAMATO-TAKKYUBIN",
- "package_quantity": 1,
- "packages": [
- {
- "size": "S",
- "weight": 1000,
- "tracking_code": "EL999999999JP"
}
], - "cases": {
- "item_id": 10,
- "details": [
- {
- "quantity_in_case": 10,
- "quantity": 2
}
]
}
}
依頼中の出庫依頼を更新します。 ステータスによっては更新できません。
id required | string Example: id=TS001-S000001 出庫ID指定 |
identifier required | string Nullable 識別番号 |
order_no | string Nullable 注文番号 (同梱明細書の「注文番号」に印刷されます) |
国内住所 (object) or 海外住所 (object) 発送元住所 (省略時は登録してある情報が使われます) | |
subtotal_amount | any Nullable 納品書 小計 |
delivery_charge | any Nullable 納品書 配送料 |
handling_charge | any Nullable 納品書 手数料 |
discount_amount | any Nullable 納品書 割引額 |
total_amount | any Nullable 納品書 合計 |
cushioning_unit | string Nullable Enum: "ORDER" "ITEM" 緩衝材単位(注文単位、もしくは商品単位で緩衝材指定します。別途料金が発生します) |
cushioning_type | string Nullable Enum: "BUBBLE_PACK" "BUBBLE_DOUBLE_PACK" 緩衝材種別(プチプチ、プチプチ2重) 注文単位で緩衝材を利用する場合に指定することができます |
gift_wrapping_unit | string Nullable Enum: "ORDER" "ITEM" ギフトラッピング単位 (注文単位、もしくは商品単位でラッピングします。別途料金が発生します) |
gift_wrapping_type | string Nullable Enum: "NAVY" "RED" ギフトラッピングタイプ 注文単位でラッピングする場合に指定することができます |
gift_sender_name | string Nullable ギフト贈り主氏名 |
bundled_items | Array of strings Nullable 同梱物の商品ID or 商品コード (5つまで) |
shipping_email | string Nullable 配送先連絡メール |
delivery_note_type | string Nullable Enum: "NOT_INCLUDE_PII" "NONE" 明細書の同梱設定
|
price_on_delivery_note | boolean Nullable 明細書への金額印字指定 (falseの場合には印字されません) |
message | string Nullable 明細書メッセージ |
suspend | boolean 保留フラグ |
shipping_date | string 出庫希望日 (指定された日付以降に倉庫で出荷作業が行われます。倉庫の作業状況次第では指定日以降に出荷となる場合があります) |
tax | string Nullable 税 |
total_with_normal_tax | any 総計通常税率 (1つ以上の軽減税率適用商品が含まれる場合に指定可能) |
total_with_reduced_tax | any 総計軽減税率 (1つ以上の軽減税率適用商品が含まれる場合に指定可能) |
required | 国内住所 (object) or 海外住所 (object) 発送先住所 (海外出庫の場合はregion_codeを指定する必要が有ります) |
delivery_carrier | string Nullable Enum: "YAMATO" "SAGAWA" 配送会社 (別途料金が発生します) 国内発送の場合に指定可能 |
delivery_time_slot | string Nullable Enum: "AM" "12" "14" "16" "18" "19" 希望時間指定 (12はSAGAWAの場合のみ) 国内発送の場合に指定可能 |
delivery_date | string Nullable 配達希望日 (指定できる最短日付は配送会社によって変わります) 国内発送の場合に指定可能 |
cash_on_delivery | boolean 代金引換指定 (trueを指定したときだけ代金引換となります) |
total_for_cash_on_delivery | any 代金引換総計 (代金引換の場合のみ指定可能) |
tax_for_cash_on_delivery | any 代金引換消費税 (代金引換の場合のみ指定可能) |
delivery_method | string Nullable Enum: "POST_EXPRESS" "HOME_BOX" 配送便指定
SSサイズの商品のみの発送の場合に、このパラメータの省略時にはPOST_EXPRESSが設定されます |
object Nullable 受取人からの希望 | |
warehouse | string Nullable 倉庫コード |
required | Array of objects 配送商品リスト |
international | boolean 海外発送指定 |
delivery_service | string Enum: "SAGAWA-HIKYAKU-YU-PACKET" "SAGAWA-TAKUHAIBIN" "SAGAWA-COOLBIN" "YAMATO-NEKOPOSU" "YAMATO-TAKKYUBIN" "YAMATO-COOLBIN" "JAPANPOST-EMS" "JAPANPOST-EPACKET" "JAPANPOST-YU-PACKET" "FEDEX-PRIORITY" "FEDEX-CONNECT-PLUS" "DHL-EXPRESS" Sagawa
Yamato
Japan Post
Fedex
DHL
|
currency_code | string 海外発送用通貨コード。海外発送時必須。 ※通貨情報参照 |
insurance | boolean 海外発送用損害保証制度の加入希望。 |
backorder_if_unavailable | boolean 在庫不足時、出庫予約としての登録許可。 |
purpose | string 海外発送用輸出目的。EMS/小形包装物 書留/DHL/Fedexの場合に指定可能
|
allocate_priority | integer 引当優先順位 |
{- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "suspend": false,
- "shipping_date": "2019-04-02",
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "warehouse": "OPL",
- "items": [
- {
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backorder_if_unavailable": true
}
], - "international": false,
- "delivery_service": "JAPANPOST-EMS",
- "currency_code": "JP",
- "insurance": false,
- "backorder_if_unavailable": false,
- "purpose": "GIFT",
- "allocate_priority": 0
}
{- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "shipping_date": "2019-04-02",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "purpose": "GIFT",
- "allocate_priority": 0
}
ステータスによっては削除できません。
id required | string Example: id=TS001-S000001 出庫ID指定 |
{ }
{- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "shipping_date": "2019-04-02",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "purpose": "GIFT",
- "allocate_priority": 0
}
ステータスがピッキング中・ピッキング済み・梱包済みの出庫依頼の修正を依頼します。
データ取り込み後の修正となりますので、別途事務手数料+作業進捗状況による作業費用がかかります。
海外発送の場合は梱包済みのステータス以降は依頼ができません。
キャンセル依頼を出していただき、別途新規の出庫依頼を作成してください。
また、作業進捗状況によってはご依頼にお応えすることができない場合がございます。
ご了承の上ご利用ください。
id required | string Example: id=TS001-S000001 出庫ID指定 |
国内住所 (object) or 海外住所 (object) 発送先住所 (海外出庫の場合はregion_codeを指定する必要が有ります) | |
delivery_time_slot | string Enum: "AM" "12" "14" "16" "18" "19" 希望時間指定 (12はSAGAWAの場合のみ) |
delivery_date | string 配達希望日 (指定できる最短日付は配送会社によって変わります) |
{- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_time_slot": "12",
- "delivery_date": "2019-04-05"
}
{- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "shipping_date": "2019-04-02",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "purpose": "GIFT",
- "allocate_priority": 0
}
ステータスがピッキング中・ピッキング済み・梱包済みの出庫依頼の修正を依頼します。
データ取り込み後の修正となりますので、別途事務手数料+作業進捗状況による作業費用がかかります。
海外発送の場合は梱包済みのステータス以降は依頼ができません。
キャンセル依頼を出していただき、別途新規の出庫依頼を作成してください。
また、作業進捗状況によってはご依頼にお応えすることができない場合がございます。
ご了承の上ご利用ください。
id required | string Example: id=TS001-S000001 出庫ID指定 |
{ }
{- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "shipping_date": "2019-04-02",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "purpose": "GIFT",
- "allocate_priority": 0
}
依頼中の出庫依頼を取得します。
出庫IDまたは識別番号を指定した場合は、依頼中以外も取得します。
account_id required | string Example: TS001 アカウントコード |
identifier required | string Example: identifier=2015-00001 識別番号 カンマ( |
{- "shipments": [
- {
- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "shipping_date": "2019-04-02",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "shipment_return": true,
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "assigned_temperature_zone": "frozen",
- "purpose": "GIFT",
- "allocate_priority": 0,
- "shipped_at": "2019-04-01",
- "tracking_code": "123456789012",
- "tracking_codes": [
- "123456789012"
], - "delivery_service": "YAMATO-TAKKYUBIN",
- "package_quantity": 1,
- "packages": [
- {
- "size": "S",
- "weight": 1000,
- "tracking_code": "EL999999999JP"
}
], - "cases": {
- "item_id": 10,
- "details": [
- {
- "quantity_in_case": 10,
- "quantity": 2
}
]
}
}
]
}
依頼中の出庫依頼を取得します。
出庫IDまたは識別番号を指定した場合は、依頼中以外も取得します。
account_id required | string Example: TS001 アカウントコード |
identifier required | string Example: 2015-00001 識別番号 |
{- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "shipping_date": "2019-04-02",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "shipment_return": true,
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "assigned_temperature_zone": "frozen",
- "purpose": "GIFT",
- "allocate_priority": 0,
- "shipped_at": "2019-04-01",
- "tracking_code": "123456789012",
- "tracking_codes": [
- "123456789012"
], - "delivery_service": "YAMATO-TAKKYUBIN",
- "package_quantity": 1,
- "packages": [
- {
- "size": "S",
- "weight": 1000,
- "tracking_code": "EL999999999JP"
}
], - "cases": {
- "item_id": 10,
- "details": [
- {
- "quantity_in_case": 10,
- "quantity": 2
}
]
}
}
ステータスによっては更新できません。
account_id required | string Example: TS001 アカウントコード |
identifier required | string Example: 2015-00001 識別番号 |
identifier required | string Nullable 識別番号 |
order_no | string Nullable 注文番号 (同梱明細書の「注文番号」に印刷されます) |
国内住所 (object) or 海外住所 (object) 発送元住所 (省略時は登録してある情報が使われます) | |
subtotal_amount | any Nullable 納品書 小計 |
delivery_charge | any Nullable 納品書 配送料 |
handling_charge | any Nullable 納品書 手数料 |
discount_amount | any Nullable 納品書 割引額 |
total_amount | any Nullable 納品書 合計 |
cushioning_unit | string Nullable Enum: "ORDER" "ITEM" 緩衝材単位(注文単位、もしくは商品単位で緩衝材指定します。別途料金が発生します) |
cushioning_type | string Nullable Enum: "BUBBLE_PACK" "BUBBLE_DOUBLE_PACK" 緩衝材種別(プチプチ、プチプチ2重) 注文単位で緩衝材を利用する場合に指定することができます |
gift_wrapping_unit | string Nullable Enum: "ORDER" "ITEM" ギフトラッピング単位 (注文単位、もしくは商品単位でラッピングします。別途料金が発生します) |
gift_wrapping_type | string Nullable Enum: "NAVY" "RED" ギフトラッピングタイプ 注文単位でラッピングする場合に指定することができます |
gift_sender_name | string Nullable ギフト贈り主氏名 |
bundled_items | Array of strings Nullable 同梱物の商品ID or 商品コード (5つまで) |
shipping_email | string Nullable 配送先連絡メール |
delivery_note_type | string Nullable Enum: "NOT_INCLUDE_PII" "NONE" 明細書の同梱設定
|
price_on_delivery_note | boolean Nullable 明細書への金額印字指定 (falseの場合には印字されません) |
message | string Nullable 明細書メッセージ |
suspend | boolean 保留フラグ |
shipping_date | string 出庫希望日 (指定された日付以降に倉庫で出荷作業が行われます。倉庫の作業状況次第では指定日以降に出荷となる場合があります) |
tax | string Nullable 税 |
total_with_normal_tax | any 総計通常税率 (1つ以上の軽減税率適用商品が含まれる場合に指定可能) |
total_with_reduced_tax | any 総計軽減税率 (1つ以上の軽減税率適用商品が含まれる場合に指定可能) |
required | 国内住所 (object) or 海外住所 (object) 発送先住所 (海外出庫の場合はregion_codeを指定する必要が有ります) |
delivery_carrier | string Nullable Enum: "YAMATO" "SAGAWA" 配送会社 (別途料金が発生します) 国内発送の場合に指定可能 |
delivery_time_slot | string Nullable Enum: "AM" "12" "14" "16" "18" "19" 希望時間指定 (12はSAGAWAの場合のみ) 国内発送の場合に指定可能 |
delivery_date | string Nullable 配達希望日 (指定できる最短日付は配送会社によって変わります) 国内発送の場合に指定可能 |
cash_on_delivery | boolean 代金引換指定 (trueを指定したときだけ代金引換となります) |
total_for_cash_on_delivery | any 代金引換総計 (代金引換の場合のみ指定可能) |
tax_for_cash_on_delivery | any 代金引換消費税 (代金引換の場合のみ指定可能) |
delivery_method | string Nullable Enum: "POST_EXPRESS" "HOME_BOX" 配送便指定
SSサイズの商品のみの発送の場合に、このパラメータの省略時にはPOST_EXPRESSが設定されます |
object Nullable 受取人からの希望 | |
warehouse | string Nullable 倉庫コード |
required | Array of objects 配送商品リスト |
international | boolean 海外発送指定 |
delivery_service | string Enum: "SAGAWA-HIKYAKU-YU-PACKET" "SAGAWA-TAKUHAIBIN" "SAGAWA-COOLBIN" "YAMATO-NEKOPOSU" "YAMATO-TAKKYUBIN" "YAMATO-COOLBIN" "JAPANPOST-EMS" "JAPANPOST-EPACKET" "JAPANPOST-YU-PACKET" "FEDEX-PRIORITY" "FEDEX-CONNECT-PLUS" "DHL-EXPRESS" Sagawa
Yamato
Japan Post
Fedex
DHL
|
currency_code | string 海外発送用通貨コード。海外発送時必須。 ※通貨情報参照 |
insurance | boolean 海外発送用損害保証制度の加入希望。 |
backorder_if_unavailable | boolean 在庫不足時、出庫予約としての登録許可。 |
purpose | string 海外発送用輸出目的。EMS/小形包装物 書留/DHL/Fedexの場合に指定可能
|
allocate_priority | integer 引当優先順位 |
{- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": "170-0013",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "name": "山田 太郎",
- "company": "スライム株式会社",
- "division": "メタル部",
- "phone": "03-3333-3333"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "total_with_normal_tax": 0,
- "total_with_reduced_tax": 1000,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ORDER",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "suspend": false,
- "shipping_date": "2019-04-02",
- "recipient": {
- "postcode": "170-0013",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "name": "山田 太郎",
- "company": "スライム株式会社",
- "division": "メタル部",
- "phone": "03-3333-3333"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "cash_on_delivery": false,
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "warehouse": "OPL",
- "items": [
- {
- "code": "item-001",
- "quantity": 1,
- "name": "勇者の盾",
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "backorder_if_unavailable": false
}
], - "international": false
}
{- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "shipping_date": "2019-04-02",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "purpose": "GIFT",
- "allocate_priority": 0
}
ステータスによっては削除できません。
account_id required | string Example: TS001 アカウントコード |
identifier required | string Example: 2015-00001 識別番号 |
{ }
{- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "shipping_date": "2019-04-02",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "purpose": "GIFT",
- "allocate_priority": 0
}
ステータスがピッキング中・ピッキング済み・梱包済みの出庫依頼の修正を依頼します。
データ取り込み後の修正となりますので、別途事務手数料+作業進捗状況による作業費用がかかります。
海外発送の場合は梱包済みのステータス以降は依頼ができません。
キャンセル依頼を出していただき、別途新規の出庫依頼を作成してください。
また、作業進捗状況によってはご依頼にお応えすることができない場合がございます。
ご了承の上ご利用ください。
account_id required | string Example: TS001 アカウントコード |
identifier required | string Example: 2015-00001 識別番号 |
国内住所 (object) or 海外住所 (object) 発送先住所 (海外出庫の場合はregion_codeを指定する必要が有ります) | |
delivery_time_slot | string Enum: "AM" "12" "14" "16" "18" "19" 希望時間指定 (12はSAGAWAの場合のみ) |
delivery_date | string 配達希望日 (指定できる最短日付は配送会社によって変わります) |
{- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_time_slot": "12",
- "delivery_date": "2019-04-05"
}
{- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "shipping_date": "2019-04-02",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "purpose": "GIFT",
- "allocate_priority": 0
}
ステータスがピッキング中・ピッキング済み・梱包済みの出庫依頼の修正を依頼します。
データ取り込み後の修正となりますので、別途事務手数料+作業進捗状況による作業費用がかかります。
海外発送の場合は梱包済みのステータス以降は依頼ができません。
キャンセル依頼を出していただき、別途新規の出庫依頼を作成してください。
また、作業進捗状況によってはご依頼にお応えすることができない場合がございます。
ご了承の上ご利用ください。
account_id required | string Example: TS001 アカウントコード |
identifier required | string Example: 2015-00001 識別番号 |
{ }
{- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "shipping_date": "2019-04-02",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "purpose": "GIFT",
- "allocate_priority": 0
}
直近の出庫実績を取得します。
出庫情報と同じフォーマットのJSONが配列で取得できます。
date_before | string Example: date_before=20190320 指定日以前の最終出庫日の出庫実績 |
date_after | string Example: date_after=20190420 指定日以降の初回出庫日の出庫実績 |
{- "shipments": [
- {
- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "shipped",
- "suspend": false,
- "label_note": "玩具",
- "shipping_date": "2019-04-02",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "shipment_return": true,
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "assigned_temperature_zone": "frozen",
- "purpose": "GIFT",
- "allocate_priority": 0,
- "shipped_at": "2019-04-01",
- "tracking_code": "123456789012",
- "tracking_codes": [
- "123456789012"
], - "delivery_service": "YAMATO-TAKKYUBIN",
- "package_quantity": 1,
- "packages": [
- {
- "size": "S",
- "weight": 1000,
- "tracking_code": "EL999999999JP"
}
], - "cases": {
- "item_id": 10,
- "details": [
- {
- "quantity_in_case": 10,
- "quantity": 2
}
]
}
}
]
}
指定年月日の出庫実績を取得します。
出庫情報と同じフォーマットのJSONが配列で取得できます。
year required | string Example: 2019 出庫年(YYYY) |
month required | string Example: 04 出庫月(MM) |
day | string Example: 02 出庫日(DD) |
{- "shipments": [
- {
- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "shipped",
- "suspend": false,
- "label_note": "玩具",
- "shipping_date": "2019-04-02",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "shipment_return": true,
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "assigned_temperature_zone": "frozen",
- "purpose": "GIFT",
- "allocate_priority": 0,
- "shipped_at": "2019-04-01",
- "tracking_code": "123456789012",
- "tracking_codes": [
- "123456789012"
], - "delivery_service": "YAMATO-TAKKYUBIN",
- "package_quantity": 1,
- "packages": [
- {
- "size": "S",
- "weight": 1000,
- "tracking_code": "EL999999999JP"
}
], - "cases": {
- "item_id": 10,
- "details": [
- {
- "quantity_in_case": 10,
- "quantity": 2
}
]
}
}
]
}
{- "regions": [
- {
- "code": "AU",
- "name": "オーストラリア",
- "name_english": "AUSTRALIA",
- "region_ems": "2-2"
}, - {
- "code": "BB",
- "name": "バルバドス",
- "name_english": "BARBADOS",
- "region_ems": "2-1"
}, - {
- "code": "FR",
- "name": "フランス",
- "name_english": "FRANCE",
- "region_ems": "2-2"
}, - {
- "code": "FR-CORSICA",
- "name": "コルシカ",
- "name_english": "CORSICA",
- "region_ems": "2-2"
}
]
}
指定商品の倉庫移動依頼をします。
発送元住所、発送先住所は指定された倉庫の住所となります。
通常出庫と同じ出庫依頼情報が作成され、同時に発送先倉庫での入庫依頼が作成されます。
warehouse required | string 移動元倉庫情報 |
required | object 移動先倉庫情報 |
required | Array of objects 移動商品リスト |
{- "warehouse": "BASE2",
- "destination": {
- "warehouse": "BASE3"
}, - "items": [
- {
- "code": "item-001",
- "quantity": 1,
- "name": "勇者の盾"
}
]
}
{- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "destination": {
- "warehouse": "BASE3",
- "warehousing": {
- "id": "TS001-W0001"
}
}
}
ステータスによっては更新できません。
id required | string Example: id=TS001-S000001 出庫ID指定 |
required | object 移動先倉庫情報 |
required | Array of objects 移動商品リスト |
{- "destination": {
- "warehouse": "BASE3"
}, - "items": [
- {
- "code": "item-001",
- "quantity": 1,
- "name": "勇者の盾"
}
]
}
{- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "destination": {
- "warehouse": "BASE3",
- "warehousing": {
- "id": "TS001-W0001"
}
}
}
ステータスがピッキング中になっている倉庫移動依頼の修正を依頼します。
データ取り込み後の修正となりますので、別途事務手数料+作業進捗状況による作業費用がかかります。
また、作業進捗状況によってはご依頼にお応えすることができない場合がございます。
ご了承の上ご利用ください。
id required | string Example: id=TS001-S000001 出庫ID指定 |
required | object 移動先倉庫情報 |
{- "destination": {
- "warehouse": "BASE3"
}
}
{- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "destination": {
- "warehouse": "BASE3",
- "warehousing": {
- "id": "TS001-W0001"
}
}
}
ステータスがピッキング中になっている倉庫移動依頼のキャンセルを依頼します。
データ取り込み後のキャンセルとなりますので、別途事務手数料+作業進捗状況による作業費用がかかります。
また、作業進捗状況によってはご依頼にお応えすることができない場合がございます。
ご了承の上ご利用ください。
id required | string Example: id=TS001-S000001 出庫ID |
{ }
{- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "destination": {
- "warehouse": "BASE3",
- "warehousing": {
- "id": "TS001-W0001"
}
}
}
対象の出庫依頼に含まれる全ての商品から引当が解除され入荷待ちに変更されます。
解除実行後は引当優先順位が高い入荷待ちの出庫依頼から引当処理が行われます。
ご了承の上ご利用ください。
id required | string Example: id=TS001-S000001 出庫ID |
{ }
{- "id": "TS001-S000001",
- "identifier": "2015-00001",
- "order_no": "12345-67890",
- "sender": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "subtotal_amount": 1000,
- "delivery_charge": 500,
- "handling_charge": 0,
- "discount_amount": 0,
- "total_amount": 1500,
- "cushioning_unit": "ORDER",
- "cushioning_type": "BUBBLE_PACK",
- "gift_wrapping_unit": "ITEM",
- "gift_wrapping_type": "NAVY",
- "gift_sender_name": "オープン太郎",
- "bundled_items": [
- "TS001-I000001"
], - "fba_shipment_id": "FBA123456789",
- "shipping_email": "test@example.com",
- "delivery_note_type": "NOT_INCLUDE_PII",
- "price_on_delivery_note": true,
- "message": "お買上げありがとうございます。",
- "status": "waiting",
- "suspend": false,
- "label_note": "玩具",
- "shipping_date": "2019-04-02",
- "assigned_shipping_date": "2019-04-02",
- "tax_included": true,
- "tax": 100,
- "total_with_normal_tax": 1000,
- "total_with_reduced_tax": 500,
- "recipient": {
- "postcode": 94043,
- "name": "open太郎",
- "phone": "03-3333-3333",
- "prefecture": "東京都",
- "address1": "豊島区東池袋1-34-5",
- "address2": "いちご東池袋ビル9F",
- "company": "スライム株式会社",
- "division": "メタル部"
}, - "delivery_carrier": "YAMATO",
- "delivery_time_slot": "AM",
- "delivery_date": "2019-04-05",
- "delivery_day": "2019-04-05",
- "cash_on_delivery": false,
- "total_for_cash_on_delivery": "1100",
- "tax_for_cash_on_delivery": "100",
- "delivery_method": "HOME_BOX",
- "delivery_options": {
- "box_delivery": true,
- "fragile_item": true
}, - "bundle_shipping_label": "string",
- "warehouse": "OPL",
- "items": [
- {
- "id": "TS001-I000004",
- "name": "勇者の盾",
- "code": "item-001",
- "quantity": 1,
- "unit_price": 1000,
- "price": 1000,
- "is_reduced_tax": true,
- "hs_code": "000000.000",
- "gift_wrapping_type": "NAVY",
- "cushioning_type": "BUBBLE_PACK",
- "backordered": false
}
], - "purpose": "GIFT",
- "allocate_priority": 0
}