# 홍보문구관리

## 홍보문구 수정

> \## 기능설명\
> \* 홍보문구관리 페이지에서 홍보문구 그리드의 수정내용을 수정합니다.\
> \---\
> \## 상세설명\
> \* 홍보문구 그리드에서 수정한 내용을 수정 저장합니다.\
> \---\
> \## 검증내용\
> \* 적용일시에 중복되는 홍보문구가 있는지 검증합니다.<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":{"RealGridCUDRequestPrAdveWrdHist":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/PrAdveWrdHist"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/PrAdveWrdHist"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/PrAdveWrdHist"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/PrAdveWrdHist"}}}},"PrAdveWrdHist":{"type":"object","description":"상품홍보문구이력","properties":{"goodsNo":{"type":"string","description":"상품번호"},"aplyStrDtm":{"type":"string","format":"date-time","description":"적용시작일자"},"aplyEndDtm":{"type":"string","format":"date-time","description":"적용종료일자"},"adveWrd":{"type":"string","description":"홍보문구"},"useYn":{"type":"string","description":"사용여부"}}},"ResponseString":{"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":{"type":"string","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v1/goods/advertisingWordMgmtApi/saveAdvertisingWordList":{"post":{"tags":["홍보문구관리"],"summary":"홍보문구 수정","description":"## 기능설명\n* 홍보문구관리 페이지에서 홍보문구 그리드의 수정내용을 수정합니다.\n---\n## 상세설명\n* 홍보문구 그리드에서 수정한 내용을 수정 저장합니다.\n---\n## 검증내용\n* 적용일시에 중복되는 홍보문구가 있는지 검증합니다.\n","operationId":"saveAdvertisingWordList","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RealGridCUDRequestPrAdveWrdHist"}}},"required":true},"responses":{"200":{"description":"홍보문구 수정 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseString"}}}},"900":{"description":"홍보문구 수정 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```

## 홍보문구 목록 조회

> \## 기능설명\
> \* 홍보문구관리 페이지에서 홍보 문구 목록을 조회합니다.\
> \---\
> \## 상세설명\
> \* 입력한 적용일시, 상품명, 상품번호, 사용여부, 홍보문구에 해당하는 홍보문구를 조회합니다.\
> \* 최근 수정일시 순으로 조회합니다.<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":{"AdvertisingWordMgmtApiRequest":{"type":"object","description":"홍보문구관리 Request","properties":{"aplyStrDtm":{"type":"string","format":"date-time","description":"적용시작일자"},"aplyEndDtm":{"type":"string","format":"date-time","description":"적용종료일자"},"adveWrd":{"type":"string","description":"홍보문구"},"goodsNo":{"type":"string","description":"상품번호"},"goodsNm":{"type":"string","description":"상품명"},"useYn":{"type":"string","description":"사용여부"}}},"ResponseRealGridListResponseAdvertisingWordMgmtApiResponse":{"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/RealGridListResponseAdvertisingWordMgmtApiResponse","description":"payload"},"error":{"type":"boolean","description":"is error"},"errors":{"type":"array","description":"validation error list","items":{"$ref":"#/components/schemas/ValidationError"}}}},"RealGridListResponseAdvertisingWordMgmtApiResponse":{"type":"object","properties":{"totalCount":{"type":"integer","format":"int32"},"payloads":{"type":"array","items":{"$ref":"#/components/schemas/AdvertisingWordMgmtApiResponse"}}}},"AdvertisingWordMgmtApiResponse":{"type":"object","description":"홍보문구관리 Response","properties":{"aplyStrDtm":{"type":"string","format":"date-time","description":"적용시작일자"},"aplyEndDtm":{"type":"string","format":"date-time","description":"적용종료일자"},"adveWrd":{"type":"string","description":"홍보문구"},"goodsNo":{"type":"string","description":"상품번호"},"goodsNm":{"type":"string","description":"상품명"},"useYn":{"type":"string","description":"사용여부"},"totalCount":{"type":"integer","format":"int32","description":"총 건수"}}},"ValidationError":{"type":"object","properties":{"field":{"type":"string","description":"field"},"message":{"type":"string","description":"field message"}}},"ErrorCode":{"type":"object","properties":{"code":{"type":"string"},"message":{"type":"string"},"httpStatus":{"type":"integer","format":"int32"},"isProcess":{"type":"boolean"}}}}},"paths":{"/v1/goods/advertisingWordMgmtApi/getAdvertisingWordList":{"get":{"tags":["홍보문구관리"],"summary":"홍보문구 목록 조회","description":"## 기능설명\n* 홍보문구관리 페이지에서 홍보 문구 목록을 조회합니다.\n---\n## 상세설명\n* 입력한 적용일시, 상품명, 상품번호, 사용여부, 홍보문구에 해당하는 홍보문구를 조회합니다.\n* 최근 수정일시 순으로 조회합니다.\n","operationId":"getAdvertisingWordList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/AdvertisingWordMgmtApiRequest"}}],"responses":{"200":{"description":"홍보문구 목록 조회 성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ResponseRealGridListResponseAdvertisingWordMgmtApiResponse"}}}},"900":{"description":"홍보문구 목록 조회 실패","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ErrorCode"}}}}}}}}}
```


---

# 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-21.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.
