API GUIDE
Etomars API Guide KR
Etomars API Guide KR
  • Wellcome!
  • API Guide
    • API 기본정보
    • Invoice
      • get
      • add
      • delete
      • update
      • label
      • getprintdata
    • Product
      • get
      • add
    • Package
      • get
      • add
    • Inbound
      • get
      • add
    • Outbound
      • get
    • Inventory
      • get
    • Report
      • get/order-status
      • get/delivery-info
    • Sales site
      • qoo10
  • Etc
    • API 변경 로그
    • exceptional 공통코드
Powered by GitBook
On this page
  1. API Guide
  2. Inbound

get

PreviousInboundNextadd

Last updated 11 days ago

입고 조회

/numbers : 입고번호목록 조회

  • 입고 조회
  • POST입고조회
  • /numbers : 입고번호목록 조회
  • POST입고번호목록 조회

입고조회

post

입고번호로 상세정보를 조회합니다.

Body

InboundGetReq

InboundNoListstring[]Required

입고번호 목록 최대(50개)

ApiKeystringRequired

APIKey 테스트 KEY:7abd72462c794016849abe4be

Responses
200
sucess
400
Valid Fail
post
POST /api/v1/inbound/get HTTP/1.1
Host: api.etomars.com
Content-Type: application/json
Accept: */*
Content-Length: 88

{
  "InboundNoList": [
    "SE230705-0001",
    "SE230705-0002"
  ],
  "ApiKey": "XXXXXXXXXXXXXXXXXXXXXXXXX"
}
{
  "Data": [
    {
      "CreateDateTime": "text",
      "StorageDateTime": "text",
      "ScheduledDateTime": "text",
      "InboundNo": "text",
      "InboundStatus": 1,
      "Method": 1,
      "DelvNo": "text",
      "SenderName": "text",
      "SenderTel": "text",
      "SenderAddr": "text",
      "Note": "text",
      "ItemList": [
        {
          "Barcode": "text",
          "SKU": "text",
          "Qty": 1,
          "LOTNO": "text"
        }
      ]
    }
  ],
  "Message": "text",
  "Code": 1
}

입고번호목록 조회

post

검색기간(최대90일)과 입고상태로 입고번호 목록을 조회합니다.

Body
StartDateTimestringRequired

검색 시작일시 입력형식 : yyyy-MM-dd HH:mm:ss yyyyMMdd, yyyy-MM-dd등 날짜만 입력시, yyyy-MM-dd 00:00:00으로 자동 변환

EndDateTimestringRequired

검색 종료일시 입력형식 : yyyy-MM-dd HH:mm:ss yyyyMMdd, yyyy-MM-dd등 날짜만 입력시, yyyy-MM-dd 23:59:59으로 자동 변환

SearchDateTypeinteger · int32Required

검색 날짜 타입 1 : 등록일 2 : 입고일

InboundStatusinteger · int32Optional

입고상태 0 : 전체 1 : 취소 2 : 등록 3 : 입고완료 기본값 : 0(전체)

ApiKeystringRequired

APIKey 테스트 KEY:7abd72462c794016849abe4be

Responses
200
sucess
400
Valid Fail
post
POST /api/v1/inbound/get/numbers HTTP/1.1
Host: api.etomars.com
Content-Type: application/json
Accept: */*
Content-Length: 149

{
  "StartDateTime": "2023-07-01 00:00:00",
  "EndDateTime": "2023-08-31 23:59:59",
  "SearchDateType": 1,
  "InboundStatus": 0,
  "ApiKey": "XXXXXXXXXXXXXXXXXXXXXXXXX"
}
{
  "Data": [
    "text"
  ],
  "Message": "text",
  "Code": 1
}