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

인기검색어 제외 관리

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

post

기능설명

  • 사이트별 인기검색어 제외 정보를 등록합니다.


상세설명

  • 신조어 등록 시 사이트번호(siteNo), 제외검색어(excludingSearchTerms)는 필수입니다.

  • 신조어 수정 시 사이트번호(siteNo), 제외검색어(excludingSearchTerms)를 수정 할수 있습니다.

  • 등록된 정보는 검색엔진으로 전송 됩니다.


수정번호

  • Release v2.00_240627 : 검색서비스 (인기검색어 제외 관리 신규추가)

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

성공

*/*
stringOptional
post/v1/search/excludPopularKewordMgmt/saveExcludPopularKeword
POST /api/bo/v1/search/excludPopularKewordMgmt/saveExcludPopularKeword HTTP/1.1
Host: api-bo.x2bee.com/
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 262

{
  "all": [
    {
      "id": "text",
      "excludingSearchTerms": "text",
      "offset": 1
    }
  ],
  "create": [
    {
      "id": "text",
      "excludingSearchTerms": "text",
      "offset": 1
    }
  ],
  "update": [
    {
      "id": "text",
      "excludingSearchTerms": "text",
      "offset": 1
    }
  ],
  "delete": [
    {
      "id": "text",
      "excludingSearchTerms": "text",
      "offset": 1
    }
  ]
}
text

인기검색어 제외 목록 조회

get

기능설명

  • 인기검색어 제외 목록을 조회하는 기능입니다.

상세설명

  • 검색조건 : 사이트코드, 검색어

  • 사이트 별로 관리하는 신조어 목록이 다르거나 동일 할수 있습니다.


수정번호

  • Release v2.00_240627 : 검색서비스 (인기검색어 제외 관리 신규추가)

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

사이트번호

Example: 1
excludingSearchTermsstringOptional

제외검색어

pageIdxstringRequired

현재 페이지

Example: 1
rowsPerPagestringRequired

페이지 당 row

Example: 10
Responses
200

성공

*/*
sizeinteger · int32Optional
frominteger · int32Optional
totalCountinteger · int32Optional
get/v1/search/excludPopularKewordMgmt/getExcludPopularKewordList
GET /api/bo/v1/search/excludPopularKewordMgmt/getExcludPopularKewordList?request=[object+Object]&siteNo=text&pageIdx=text&rowsPerPage=text HTTP/1.1
Host: api-bo.x2bee.com/
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "size": 1,
  "from": 1,
  "totalCount": 1,
  "searchDataList": [
    {
      "id": "text",
      "excludingSearchTerms": "text",
      "offset": 1
    }
  ]
}

마지막 업데이트