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" 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" enum: ["domain_validated", "organization_validated", "extended_validated"] } vendor: { type: "string" description: "The vendor of the certificate." enum: ["sectigo"] } } additionalProperties: false } } }