--- title: "DB upload 조회" slug: "analytics-cloudsearch-getdbupload" updated: 2026-07-23T09:04:38Z published: 2026-07-23T09:04:38Z canonical: "api.ncloud-docs.com/analytics-cloudsearch-getdbupload" --- > ## 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. # DB upload 조회 도메인에 DB upload 기능 사용이력을 조회 합니다. DB upload 기능 사용하였을때만 데이터가 출력됩니다. ``` GET https://cloudsearch.apigw.ntruss.com/CloudSearch/real/v1/domain/{name}/document/manage/db_upload ``` ## 요청 ### 요청 파라미터 | 파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 | | --- | --- | --- | --- | --- | | name | Yes | string | 생성되어져 있는 Domain 이름 | 자동 완성 설정 이력을 조회하고자 하는 Domain 이름 | | limit | Yes | number | Min:1 MAX:30 | Pagination Limit | | page | Yes | number | | Pagination Offset | ## 응답 ### 응답 바디 | 필드명 | 필수 여부 | 타입 | 설명 | 비고 | | --- | --- | --- | --- | --- | | cnt | Yes | number | 전체 데이터 개수 | | | page | Yes | number | 페이지 | | | limit | Yes | number | 리밋 | | | userDbUploadList | Yes | List | db upload 호출정보 | | ### 응답 Status | HTTP Status | Desc | | --- | --- | | 200 | OK(조회 완료) | | 400 | Bad Request | | 401 | Unauthorized | | 403 | Forbidden | | 404 | Not Found | | 500 | Internal Server Error | ## 예시 ### 요청 예시 ``` GET /CloudSearch/real/v1/domain/eeee/document/manage/db_upload?limit=10&page=0 HTTP/1.1 Host: cloudsearch.apigw.ntruss.com Content-Type: application/json x-ncp-apigw-signature-v2: cDwtHuQeGmwWyNmwlN6XIGA66zge4iMXvfoDQNna05g= x-ncp-apigw-timestamp: 1545817618751 x-ncp-iam-access-key: teGTwtcSEGA7fu28BGGi ``` ### 응답 예시 ``` { "cnt": 9, "page": 0, "limit": 2, "userDbUploadList": [ { "name": "db_upload", "dbKind": "mysql", "host": "", "port": 3306, "user": "root", "password": "0708", "db": "cloud_search", "charset": "utf8", "keyField": "id", "indexTypeField": "index_type", "sql": "select * from test_data", "connectTimeout": 4, "createdDate": "2020-11-02T06:26:15.792Z", "updatedDate": "2020-11-02T06:26:15.792Z" }, { "name": "db_upload", "dbKind": "mysql", "host": "", "port": 3306, "user": "root", "password": "0708", "db": "cloud_search", "charset": "utf8", "keyField": "id", "indexTypeField": "index_type", "sql": "select * from test_data", "connectTimeout": 4, "createdDate": "2020-11-02T06:14:07.255Z", "updatedDate": "2020-11-02T06:14:07.255Z" } ] } ```