action combell_get_ssl_certificate_requests {
label: "Overview of SSL certificate requests"
provider: combell
method: GET
path: "/sslcertificaterequests"
encoding: json
input: {
type: "object"
properties: {
skip: {
type: "integer"
format: "int32"
description: "The number of items to skip in the resultset."
}
take: {
type: "integer"
format: "int32"
description: "The number of items to return in the resultset. The returned count can be equal or less than this number."
}
}
additionalProperties: false
}
output: {
type: "array"
items: {
type: "object"
properties: {
certificate_type: {
type: "string"
description: "The type of the certificate:
\n
- Standard: Certificate for a single domain.
- Multi domain: Certificate for multiple (sub)domains belonging to the same owner.
- Wildcard: Certificate for all the subdomains.
"
enum: ["standard", "multi_domain", "wildcard"]
}
common_name: {
type: "string"
description: "The common name of the certificate request."
}
id: {
type: "integer"
format: "int32"
description: "The id of the certificate request."
}
order_code: {
type: "string"
description: "The order code of the certificate request."
}
validation_level: {
type: "string"
description: "The validation level of the certificate:
\n- Domain validated: Basic check of the identity of the owner of the domain name.
- Organization validated: Company details are verified and integrated in the certificate.
- Extended validated: A thorough verification of your domain name and company details.
"
enum: ["domain_validated", "organization_validated", "extended_validated"]
}
vendor: {
type: "string"
description: "The vendor of the certificate."
enum: ["sectigo"]
}
}
additionalProperties: false
}
}
}