apply_certificate
Request a free SSL certificate for specified domains and site ID. Supports Let's Encrypt or Digicert options for single or wildcard domains.
Instructions
Applies for a free SSL certificate.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domains | Yes | The list of domain names, separated by commas. Example: "example.com,www.example.com" | |
siteId | Yes | Site ID. Example: 1234567890123. Reference Value Source: list_sites | |
type | Yes | The type of certificate. Possible values: - lets_encrypt (Let's Encrypt certificate) - digicert_single (Digicert single-domain certificate) - digicert_wildcard (Digicert wildcard certificate) |
Input Schema (JSON Schema)
{
"annotations": {},
"properties": {
"domains": {
"description": "The list of domain names, separated by commas. Example: \"example.com,www.example.com\"",
"type": "string"
},
"siteId": {
"description": "Site ID. Example: 1234567890123. Reference Value Source: list_sites",
"type": "number"
},
"type": {
"description": "The type of certificate. Possible values: - lets_encrypt (Let's Encrypt certificate) - digicert_single (Digicert single-domain certificate) - digicert_wildcard (Digicert wildcard certificate) ",
"type": "string"
}
},
"required": [
"siteId",
"domains",
"type"
],
"type": "object"
}