Get secret list
- Print
- PDF
Get secret list
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Summary
View the list of secrets.
GET https://secretmanager.apigw.ntruss.com/api/v1/secrets
Request
Request parameters
{
"pageNo": 0
}
Parameter name | Type | Description |
---|---|---|
pageNo | Integer | Requested page number |
Request body
None
Response
Response body
{
"code": "SUCCESS",
"data": {
"totalPageNo": 0,
"currentPageNo": 0,
"totalCount": 0,
"secretList": [
{
"secretId": "string",
"secretName": "string",
"secretStatus": "ENABLE",
"secretType": "string",
"region": "string",
"registerDate": 0
}
]
}
}
Parameter name | Type | Description |
---|---|---|
totalPageNo | Integer | Total number of pages |
currentPageNo | Integer | Current page number |
totalCount | Integer | Total number of secrets |
secretInfoList | secretInfo List | SecretInfo list |
secretList.secretId | String | Secret ID |
secretList.secretName | String | Secret name |
secretList.secretStatus | String | Secret status (ENABLE , DISABLE , REVOKE , ROTATING , DESTROYED ) |
secretList.secretType | String | Secret type (BASIC ) |
secretList.region | String | Region code |
secretList.registerDate | Long | Registration date and time (timestamp) |
Was this article helpful?