# Start processing pending queue's SSL certificates This function manually processes the cPanel Market's SSL certificate request pending queue. Endpoint: GET /Market/process_ssl_pending_queue Version: 11.134.0.5 Security: BasicAuth ## Response 200 fields (application/json): - `apiversion` (integer) The version of the API. Example: 3 - `func` (string) The name of the method called. Example: "process_ssl_pending_queue" - `module` (string) The name of the module called. Example: "Market" - `result` (object) - `result.data` (array) Information about each certificate request in the pending queue. - `result.data.certificate_pem` (string,null) The text of the certificate, if available. * - The certificate is not available. Example: "null" - `result.data.created_time` (integer) When the system placed the order. Example: 1460136406 - `result.data.csr` (string) The Certificate Signing Request's (CSR's) text. Example: "-----BEGIN CERTIFICATE REQUEST-----\\nMIICqjCCAZICAQAwHDEaMBgGA1UEAxMRY3BhbmVsc3NsdGVzdC5vcmcwggEiMA0G\\nCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqu4KLPxCgAENTJFjcUyc4v5KaF8Lu\\n2OldjIT/vB58IRCIUxdDSD29v/qHFVBaUFEtr+Ssey0strMcc6JYSl8Vdwfe2qwv\\npB6+Ufg+hlN4lAgojxgwz7iZlPnGuRVfNTvNMmljVRzGDc4SSzskpDxZhk+aaMgP\\nSkMLFg6f6pFZ+44alridlSG5gxD34xWAtt8Qy2v+6Q4XVuMNCd9KlyAoCV9Q+wH1\\nq49yoRdwvcY6G6mqlFWtHsToz4tdYk/Nt7odZnyKcjHWGWnlRzO2FGbbBxVKF8s6\\ns3DL5OwPRfQQD18V7eL7NmcFo45zmdndBOevrLuwXJ1yWITM2bmYgF1nAgMBAAGg\\nSTBHBgkqhkiG9w0BCQ4xOjA4MDYGA1UdEQEB/wQsMCqCEWNwYW5lbHNzbHRlc3Qu\\nb3JnghV3d3cuY3BhbmVsc3NsdGVzdC5vcmcwDQYJKoZIhvcNAQELBQADggEBAFAJ\\nSqTvd3d8PN26UiT4uX0WjofaX8u1/11hU5Saekai0Dxl/ijq2R7TpebXe9r0t6Cr\\ns7NXKszVoKzQHV4nSFbfb3ZxEsnVDXbPUv3D+oLfGpMASLG+P2yOjmDhzZBNJgo4\\nQu6nf6ggJxJ0PRM81xL234FAKqsOvvTwTLXtYVrwbUCzfB+yKJXvfeGETR/3HGxR\\nqoJ97Zmjsbw78fETEsZ6rsBHDPuxtxum73BC7qoLjCl4psPznHshXvWTeV9fyR3c\\nqpdpLvwBxhI8ZOWoNGgJlUpY9jUFgqG+YI/Mkmzmxk9QC9edIHSScTXxroYkmwMC\\nginnKRLDafSp+7FyIzs=\\n-----END CERTIFICATE REQUEST-----" - `result.data.deleted` (integer) Whether the system has deleted the item from the pending queue. * - Deleted. * - deleted. Enum: 0, 1 - `result.data.domains` (array) A list of domains that the certificate request covers. Example: ["example.com"] - `result.data.expired` (integer) Whether the system has deleted the item from the pending queue. * - Deleted. * - deleted. Enum: 0, 1 - `result.data.first_poll_time` (integer) The first time that the system polled the provider for the certificate. Example: 1458061262 - `result.data.installed` (integer) Whether the system installed the certificate. * - Installed. * - installed. Enum: 0, 1 - `result.data.last_poll_time` (integer) The last time that the system polled the provider for the certificate. Example: 1458061299 - `result.data.last_status_code` (string) The last status code of the order. * - The system cannot locate the specified certificate. * - The specified certificate requires approval. * - The system canceled the order of the specified certificate. * - The system canceled the order item of the specified certificate. Enum: "CertificateNotFound", "RequiresApproval", "OrderCanceled", "OrderItemCanceled" - `result.data.last_status_message` (string) An error message from the certificate provider. For example, why a certificate authority rejected an SSL certificate. If no error message exists, this will return an empty string. Example: "PRE-SIGN FAILED: CAA: Processing error" - `result.data.order_id` (string) A unique identifier for the order. Example: "19461" - `result.data.order_item_id` (string) A unique identifier of each item in the order. Example: "f9d7" - `result.data.product_id` (string) An identifier for a given product. Example: "fg2" - `result.data.provider` (string) The cPanel Market provider's name. Example: "cPStore" - `result.data.status` (string) The status of the order. * - Payment confirmed. * - Payment confirmed. Enum: "confirmed", "unconfirmed" - `result.data.vhost_names` (array) A list of virtual host names. Example: ["example.com"] - `result.errors` (array,null) List of errors if the API failed. - `result.messages` (array,null) List of messages generated by the API. - `result.metadata` (object) - `result.metadata.transformed` (integer) Post-processing may have transformed the data. Enum: 1 - `result.status` (integer) * - Success * - Failed: Check the errors field for more details. Enum: 0, 1 - `result.warnings` (array,null) List of warnings generated by the API. Warnings describe non-critical failures or other problematic conditions noted while running an API.