action combell_get_ssl_certificates { label: "Overview of SSL certificates" provider: combell method: GET path: "/sslcertificates" 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: { common_name: { type: "string" description: "The common name (e.g. domain.com) of the certificate." } expires_after: { type: "string" format: "date-time" description: "The exact time the certificate will expire." } sha1_fingerprint: { type: "string" description: "The SHA-1 fingerprint of the certificate.
\nThe fingerprint is a cryptographic hash which is a short unique identification of the certificate." } type: { type: "string" description: "The type of the certificate: \n" enum: ["standard", "multi_domain", "wildcard"] } validation_level: { type: "string" description: "The validation level of the certificate: \n" enum: ["domain_validated", "organization_validated", "extended_validated"] } } additionalProperties: false } } }