getCatalogs
- Print
- PDF
getCatalogs
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in VPC
Searches for all information on the user’s catalogs.
Requests
Request URL
GET {DATA_CATALOG API_URL}/catalogs
Request parameters
Parameter name | Requirement status | Type | Restrictions | Description |
---|---|---|---|---|
pageNo | No | int | Page number Default: 1 | |
pageSize | No | int | Maximum: 200 | Size of result list Default: 20 |
Request header
Request examples
curl -X GET "https://datacatalog.apigw.ntruss.com/api/v1/catalogs?pageNo=1&pageSize=20" \
-H "x-ncp-apigw-timestamp: {x-ncp-apigw-timestamp}" \
-H "x-ncp-iam-access-key: {x-ncp-iam-access-key}" \
-H "x-ncp-apigw-signature-v2: {x-ncp-apigw-signature-v2}"
Responses
Response bodies
Item | Type | Description |
---|---|---|
catalogId | int | Unique catalog ID |
catalogStatus | String | Catalog status |
metastoreStatus | String | Catalog metastore status |
createTime | Date | Catalog creation date and time |
updateTime | Date | Catalog modification date and time |
Response examples
HTTP
HTTP Status | Description |
---|---|
200 | OK |
JSON
[
{
"catalogId": 301,
"catalogStatus": "CREATED",
"metastoreStatus": "METASTORE_RUNNING",
"createTime": "2022-11-30T12:30:16+0900",
"updateTime": "2022-11-30T12:30:40+0900"
}
]
Was this article helpful?