--- title: "동의어 사전 수정" slug: "analytics-cloudsearch-putsynonym" updated: 2026-07-23T09:04:38Z published: 2026-07-23T09:04:38Z canonical: "api.ncloud-docs.com/analytics-cloudsearch-putsynonym" --- > ## Documentation Index > Fetch the complete documentation index at: https://api.ncloud-docs.com/llms.txt > Use this file to discover all available pages before exploring further. # 동의어 사전 수정 사용자 동의어 사전을 수정합니다. - 현재 버전보다 낮은 버전 추가는 불가능합니다.. ``` PUT https://cloudsearch.apigw.ntruss.com/CloudSearch/real/v1/domain/{name}/synonym/{synoName} ``` ## 요청 ### 요청 파라미터 | 파라미터 명 | 필수 여부 | 타입 | 제약사항 | 설명 | | --- | --- | --- | --- | --- | | name | Yes | string | | 생성되어져 있는 Domain 이름 | | synoName | Yes | string | 영문, "_"로 시작, 영문, 숫자, "_" 허용 최소 3자 최대 20자까지 입력 | 생성할 동의어 사전 이름 | ### 요청 바디 | 파라미터 명 | 필수 여부 | 타입 | 제약사항 | 설명 | | --- | --- | --- | --- | --- | | type | Yes | string | filter, exact | Stopword 규칙 종류filter: 부분 매칭, 등록한 불용어와 검색어 일부가 일치하면 검색어 중 매칭되는 부분 제거exact: 완전 매칭, 등록한 불용어와 검색어가 정확히 일치하면 검색어 중 매칭되는 단어 제거 | | word_list | Yes | List | | Stopword로 설정할 단어 목록 | | case_sensitive | Yes | boolean | true, false | Stopword로 설정할 단어의 대소문자 구분 여부 | ### 응답 Status | HTTP Status | Desc | | --- | --- | | 200 | OK(수정 완료) | | 400 | Bad Request | | 401 | Unauthorized | | 403 | Forbidden | | 404 | Not Found | | 500 | Internal Server Error | ## 예시 ### 요청 예시 ``` PUT https://cloudsearch.apigw.ntruss.com/CloudSearch/real/v1/domain/wiki/synonym/syno Content-Type: application/json x-ncp-iam-access-key: cPMl0CYGgRYvEa8sylCj x-ncp-apigw-signature-v2: +Ln++MqcKHckKli2y/bB76xLUu8qR9rLvo6j2yIYuYg= x-ncp-apigw-timestamp: 1551453306138 { "wordList": "핸드폰,휴대폰,폰\n휴지,티슈", "version": "0.4", "description": "wiki 동의어 사전 0.4" } ``` ### 응답 예시 ``` {"result":"ok"} ```