# 재입고 알림 관리

## 재입고 알림 목록 조회

> \## 기능설명\
> \* 재입고 알림 목록을 조회하는 API 입니다.\
> \---\
> \## 상세설명\
> \* 상품 관리 > 재입고 알림 관리 화면에서 목록을 조회할 때 호출하는 API 입니다.\
> \* 조회기간은 기본적으로 최근 30일로 설정되어 있으며, 기간을 변경하여 조회할 수 있습니다.\
> &#x20;   \* 조회기간은 재입고 알림 신청일과 재입고 알림 발송일로 검색할 수 있습니다.\
> \* 다양한 파라미터를 통해 재입고 알림 목록을 조회할 수 있습니다.\
> &#x20;   \* 상품번호, 상품명, 재입고 알림 발송상태, 회원아이디, 협력사번호, 담당 MD를 조건으로 조회 가능합니다.\
> &#x20;   \* 상품번호는 시작, 포함, 같음, 멀티, 범위 등으로 검색할 수 있습니다.\
> \---\
> \## 수정번호\
> \* Release v1.04\_231204 : 재입고 알림 목록 조회, 재입고 알림 목록 조회 신규 추가\
> \* Release v2.00\_240425 : 재입고 알림 관리 사이트 번호 추가<br>

```json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"RestockNotificationApiRequest":{"type":"object","description":"재입고 알림관리 Request DTO","properties":{"searchDateType":{"type":"string","description":"조회 기간 검색 조건"},"reStockStartDtm":{"type":"string","format":"date-time","description":"재입고알림 시작일"},"reStockEndDtm":{"type":"string","format":"date-time","description":"재입고알림 종료일"},"isAllPeriod":{"type":"boolean","description":"전체 기간 조회 여부"},"loginId":{"type":"string","description":"회원 ID"},"mbrNm":{"type":"string","description":"회원명"},"entrNo":{"type":"string","description":"협력사 번호"},"mdUserId":{"type":"string","description":"MD ID"},"reWhsgNotiStatCd":{"type":"string","description":"재입고 알림상태코드"},"goodsNo":{"type":"string","description":"상품번호"},"goodsNm":{"type":"string","description":"상품명"},"goodsNoOption":{"type":"string","description":"상품 번호 옵션"},"goodsNoList":{"type":"string","description":"상품번호 리스트 스트링"},"goodsNoArray":{"type":"array","description":"상품번호 리스트 배열","items":{"type":"string"}},"goodsNoFrom":{"type":"string","description":"상품번호 From 조건"},"goodsNoTo":{"type":"string","description":"상품번호 To 조건"}}},"ResponseRealGridListResponseRestockNotificationApiResponse":{"type":"object","properties":{"timestamp":{"type":"string","format":"date-time","description":"result time"},"code":{"type":"string","description":"result code"},"message":{"type":"string","description":"result message"},"isProcess":{"type":"boolean","description":"process check"},"payload":{"$ref":"#/components/schemas/RealGridListResponseRestockNotificationApiResponse","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"RealGridListResponseRestockNotificationApiResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/RestockNotificationApiResponse"}}}},"RestockNotificationApiResponse":{"type":"object","description":"재입고 알림관리 Response DTO","properties":{"reWhsgNotiSgtNo":{"type":"string","description":"알림신청번호"},"notiSgtDtm":{"type":"string","description":"신청일시"},"notiSndDtm":{"type":"string","description":"발송일시"},"noticnclDtm":{"type":"string","description":"취소일시"},"reWhsgNotiStatCd":{"type":"string","description":"발송상태"},"loginId":{"type":"string","description":"신청 회원 ID"},"loginNm":{"type":"string","description":"신청 회원명"},"goodsNo":{"type":"string","description":"상품번호"},"goodsNm":{"type":"string","description":"상품명"},"itmNo":{"type":"string","description":"단품번호"},"itmNm":{"type":"string","description":"옵션값"},"mdNm":{"type":"string","description":"담당 MD"},"entrNm":{"type":"string","description":"협력사명"},"totalCount":{"type":"integer","format":"int32","description":"총갯수"},"siteNm":{"type":"string","description":"사이트명"}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}}}},"paths":{"/v1/goods/restockNotification/getRestockNotiList":{"get":{"tags":["재입고 알림 관리"],"summary":"재입고 알림 목록 조회","description":"## 기능설명\n* 재입고 알림 목록을 조회하는 API 입니다.\n---\n## 상세설명\n* 상품 관리 > 재입고 알림 관리 화면에서 목록을 조회할 때 호출하는 API 입니다.\n* 조회기간은 기본적으로 최근 30일로 설정되어 있으며, 기간을 변경하여 조회할 수 있습니다.\n    * 조회기간은 재입고 알림 신청일과 재입고 알림 발송일로 검색할 수 있습니다.\n* 다양한 파라미터를 통해 재입고 알림 목록을 조회할 수 있습니다.\n    * 상품번호, 상품명, 재입고 알림 발송상태, 회원아이디, 협력사번호, 담당 MD를 조건으로 조회 가능합니다.\n    * 상품번호는 시작, 포함, 같음, 멀티, 범위 등으로 검색할 수 있습니다.\n---\n## 수정번호\n* Release v1.04_231204 : 재입고 알림 목록 조회, 재입고 알림 목록 조회 신규 추가\n* Release v2.00_240425 : 재입고 알림 관리 사이트 번호 추가\n","operationId":"getRestockNotiList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/RestockNotificationApiRequest"}}],"responses":{"200":{"description":"재입고 알림 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseRealGridListResponseRestockNotificationApiResponse"}}}},"900":{"description":"재입고 알림 목록 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseRealGridListResponseRestockNotificationApiResponse"}}}}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://tech.x2bee.com/api/back-office-api/goods-bo-api/undefined-25.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
