Inventory Transfer
업체 내부 센터간 재고 이동 히스토리를 등록하는 API 입니다.
- API 호출 방향 : Vendor -> Coupang
- URL : /v1/3pfl/inventory/transfer
- Interface Style : Restful API
- HTTP Protocol : HTTPS
- Method : POST
Request Body
| Property Name | Parent Object | Data Type | Size | Mandatory | Description |
| Root | Array | Y | |||
| sourceCenterCode | Root Array | String | Y | 재고 이동 소스 센터 | |
| targetCenterCode | Root Array | String | Y | 재고 이동 대상 센터 | |
| sourceCenterQuantity | Root Array | Integer | Y | 소스 센터의 재고 이동 후 수량 | |
| targetCenterQuantity | Root Array | Integer | Y | 대상 센터의 재고 이동 후 수량 | |
| skuId | Root Array | Long | Y | 쿠팡 SKU ID | |
| vendorSkuId | Root Array | String | N | 쿠팡과 매핑된 업체 SKU ID | |
| reason | Root Array | String | Y | 재고 이동 사유 | |
| eventTime | Root Array | Long | Y | 재고 이동 이벤트 발생 timestamp |
Request Example
[
{
"vendorSkuId":"100123",
"targetCenterQuantity":11000,
"targetCenterCode":"CENTER001",
"sourceCenterQuantity":9000,
"sourceCenterCode":"CENTER002",
"skuId":10001234,
"reason":"재고이동 사유",
"eventTime":1604917268
}
]
Response
| Property Name | Data Type | Size | Mandatory | Description |
| code | String | 20 | N | 결과값
|
| message | String | 100 | N | 에러 사유 |
| data | String/Object | - | N | Response Data |
Response Example
{
"code": "0",
"message": null,
“data”: null
}