跳到主要内容

SSL verify

Learn how to add and configure the "SSL checker" action in your Buddy pipeline

POST参数

名称类型描述
name
必填
String操作名称
type
必填
StringThe type of the action. Should be set to SSL_VERIFY.
website
必填
StringThe URL of the website to be monitored.
valid_for_days
必填
IntegerValidation period for SSL certificate.
portStringThe port for the connection. By default it is 443.

示例

请求

POST https://api.buddy.works/workspaces/buddy/projects/company-website/pipelines/2/actions

JSON

{
"name": "SSL VERIFY",
"port": "443",
"type": "SSL_VERIFY",
"trigger_time": "ON_EVERY_EXECUTION",
"website": "buddy.works",
"valid_for_days": 31
}

示例响应

HTTP

Status: 201 Created
X-Rate-Limit-Limit: 1
X-Rate-Limit-Remaining: 999

JSON

{
"url": "https://api.buddy.works/workspaces/buddy/projects/company-website/pipelines/2/actions/2",
"html_url": "https://app.buddy.works/buddy/company-website/pipelines/action/2/edit",
"id": 2,
"name": "SSL VERIFY",
"type": "SSL_VERIFY",
"trigger_time": "ON_EVERY_EXECUTION",
"last_execution_status": "INITIAL",
"port": "443",
"website": "buddy.works",
"valid_for_days": 31,
"pipeline": {
"url": "https://api.buddy.works/workspaces/buddy/projects/company-website/pipelines/2",
"html_url": "https://app.buddy.works/buddy/company-website/pipelines/pipeline/2",
"id": 2,
"name": "Live mirror",
"on": "CLICK",
"refs": [
"refs/heads/master"
],
"last_execution_status": "INITIAL"
}
}