# 인기검색어 제외 관리

## 인기검색어 제외 저장/수정/삭제

> \## 기능설명\
> \* 사이트별 인기검색어 제외 정보를 등록합니다.\
> \---\
> \## 상세설명\
> \* 신조어 등록 시 사이트번호(siteNo), 제외검색어(excludingSearchTerms)는 필수입니다.\
> \* 신조어 수정 시 사이트번호(siteNo), 제외검색어(excludingSearchTerms)를 수정 할수 있습니다.\
> \* 등록된 정보는 검색엔진으로 전송 됩니다.\
> \---\
> \## 수정번호\
> \* \`\`\`Release v2.00\_240627\`\`\` : 검색서비스 (인기검색어 제외 관리 신규추가)\ <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":{"RealGridCUDRequestExcludPopularKeywordMgmtRequest":{"type":"object","properties":{"all":{"type":"array","items":{"$ref":"#/components/schemas/ExcludPopularKeywordMgmtRequest"}},"create":{"type":"array","items":{"$ref":"#/components/schemas/ExcludPopularKeywordMgmtRequest"}},"update":{"type":"array","items":{"$ref":"#/components/schemas/ExcludPopularKeywordMgmtRequest"}},"delete":{"type":"array","items":{"$ref":"#/components/schemas/ExcludPopularKeywordMgmtRequest"}}}},"ExcludPopularKeywordMgmtRequest":{"type":"object","properties":{"id":{"type":"string"},"excludingSearchTerms":{"type":"string"},"offset":{"type":"integer","format":"int32"}}},"Response":{"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":{"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"}}}}},"paths":{"/v1/search/excludPopularKewordMgmt/saveExcludPopularKeword":{"post":{"tags":["인기검색어 제외 관리"],"summary":"인기검색어 제외 저장/수정/삭제","description":"## 기능설명\n* 사이트별 인기검색어 제외 정보를 등록합니다.\n---\n## 상세설명\n* 신조어 등록 시 사이트번호(siteNo), 제외검색어(excludingSearchTerms)는 필수입니다.\n* 신조어 수정 시 사이트번호(siteNo), 제외검색어(excludingSearchTerms)를 수정 할수 있습니다.\n* 등록된 정보는 검색엔진으로 전송 됩니다.\n---\n## 수정번호\n* ```Release v2.00_240627``` : 검색서비스 (인기검색어 제외 관리 신규추가)\n\n","operationId":"saveExcludPopularKeword","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/RealGridCUDRequestExcludPopularKeywordMgmtRequest"}}},"required":true},"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"type":"string"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
````

## 인기검색어 제외 목록 조회

> \## 기능설명\
> \* 인기검색어 제외 목록을 조회하는 기능입니다.\
> \## 상세설명\
> \* 검색조건 : 사이트코드, 검색어\
> \* 사이트 별로 관리하는 신조어 목록이 다르거나 동일 할수 있습니다.\
> \---\
> \## 수정번호\
> \* \`\`\`Release v2.00\_240627\`\`\` : 검색서비스 (인기검색어 제외 관리 신규추가)<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":{"ExcludPopularKeywordMgmtRequest":{"type":"object","properties":{"id":{"type":"string"},"excludingSearchTerms":{"type":"string"},"offset":{"type":"integer","format":"int32"}}},"ExcludPopularKeywordMgmtResponse":{"type":"object","properties":{"size":{"type":"integer","format":"int32"},"from":{"type":"integer","format":"int32"},"totalCount":{"type":"integer","format":"int32"},"searchDataList":{"type":"array","items":{"$ref":"#/components/schemas/ExcludPopularKeywordMgmtRequest"}}}},"Response":{"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":{"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"}}}}},"paths":{"/v1/search/excludPopularKewordMgmt/getExcludPopularKewordList":{"get":{"tags":["인기검색어 제외 관리"],"summary":"인기검색어 제외 목록 조회","description":"## 기능설명\n* 인기검색어 제외 목록을 조회하는 기능입니다.\n## 상세설명\n* 검색조건 : 사이트코드, 검색어\n* 사이트 별로 관리하는 신조어 목록이 다르거나 동일 할수 있습니다.\n---\n## 수정번호\n* ```Release v2.00_240627``` : 검색서비스 (인기검색어 제외 관리 신규추가)\n","operationId":"getExcludPopularKewordList","parameters":[{"name":"request","in":"query","required":true,"schema":{"$ref":"#/components/schemas/ExcludPopularKeywordMgmtRequest"}},{"name":"siteNo","in":"query","description":"사이트번호","required":true,"schema":{"type":"string"}},{"name":"excludingSearchTerms","in":"query","description":"제외검색어","schema":{"type":"string"}},{"name":"pageIdx","in":"query","description":"현재 페이지","required":true,"schema":{"type":"string"}},{"name":"rowsPerPage","in":"query","description":"페이지 당 row","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"성공","content":{"*/*":{"schema":{"$ref":"#/components/schemas/ExcludPopularKeywordMgmtResponse"}}}},"900":{"description":"업무처리 오류 내용","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Response"}}}}}}}}}
````


---

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