For the complete documentation index, see llms.txt. This page is also available as Markdown.

재입고 알림 관리

재입고 알림 목록 조회

get

기능설명

  • 재입고 알림 목록을 조회하는 API 입니다.


상세설명

  • 상품 관리 > 재입고 알림 관리 화면에서 목록을 조회할 때 호출하는 API 입니다.

  • 조회기간은 기본적으로 최근 30일로 설정되어 있으며, 기간을 변경하여 조회할 수 있습니다.

    • 조회기간은 재입고 알림 신청일과 재입고 알림 발송일로 검색할 수 있습니다.

  • 다양한 파라미터를 통해 재입고 알림 목록을 조회할 수 있습니다.

    • 상품번호, 상품명, 재입고 알림 발송상태, 회원아이디, 협력사번호, 담당 MD를 조건으로 조회 가능합니다.

    • 상품번호는 시작, 포함, 같음, 멀티, 범위 등으로 검색할 수 있습니다.


수정번호

  • Release v1.04_231204 : 재입고 알림 목록 조회, 재입고 알림 목록 조회 신규 추가

  • Release v2.00_240425 : 재입고 알림 관리 사이트 번호 추가

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
Responses
200

재입고 알림 목록 조회 성공

*/*
timestampstring · date-timeOptional

result time

codestringOptional

result code

messagestringOptional

result message

isProcessbooleanOptional

process check

errorbooleanOptional

is error

get/v1/goods/restockNotification/getRestockNotiList
GET /api/bo/v1/goods/restockNotification/getRestockNotiList?request=[object+Object] HTTP/1.1
Host: api-bo.x2bee.com/
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "timestamp": "2026-01-01T00:00:00.000Z",
  "code": "text",
  "message": "text",
  "isProcess": true,
  "payload": {
    "totalCount": 1,
    "payloads": [
      {
        "reWhsgNotiSgtNo": "text",
        "notiSgtDtm": "text",
        "notiSndDtm": "text",
        "noticnclDtm": "text",
        "reWhsgNotiStatCd": "text",
        "loginId": "text",
        "loginNm": "text",
        "goodsNo": "text",
        "goodsNm": "text",
        "itmNo": "text",
        "itmNm": "text",
        "mdNm": "text",
        "entrNm": "text",
        "totalCount": 1,
        "siteNm": "text"
      }
    ]
  },
  "error": true,
  "errors": [
    {
      "field": "text",
      "message": "text"
    }
  ]
}

마지막 업데이트