list_certificates
Retrieve and filter certificates for a specific website by ID, with options to search by keyword, filter by validity, and manage paginated results.
Instructions
Lists certificates of a website.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyword | No | The search keyword. | |
pageNumber | No | The page number of the returned data. | |
pageSize | No | The number of records per page. | |
siteId | Yes | The website ID. Reference Value Source: list_sites. Example: 1234567890123 | |
validOnly | No | Whether to return only valid certificates. |
Input Schema (JSON Schema)
{
"annotations": {},
"properties": {
"keyword": {
"description": "The search keyword.",
"type": "string"
},
"pageNumber": {
"description": "The page number of the returned data.",
"type": "number"
},
"pageSize": {
"description": "The number of records per page.",
"type": "number"
},
"siteId": {
"description": "The website ID. Reference Value Source: list_sites. Example: 1234567890123",
"type": "number"
},
"validOnly": {
"description": "Whether to return only valid certificates.",
"type": "boolean"
}
},
"required": [
"siteId"
],
"type": "object"
}