> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Order SSL

Generate an order or renewal request for a new SSL certificate.

**Note:** Certificate renewals must be requested from the same account used for the original order.

<Note>
  External Documentation

  To learn more, visit the [DigiCert documentation](https://dev.digicert.com/certcentral-apis/services-api/orders/order-ssl-type_hint.html).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter                   | Description                                                                                                                                                                                                                                                                                                                                                                                                            |
  | --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | CA Certificate ID           | The CA certificate ID to use for this order. Can be obtained from the `List Products` action.<br /><br />**Note:** This parameter is required if the `Product Type Hint` is `private`.                                                                                                                                                                                                                                 |
  | Certificate Common Name     | The domain to be secured by the certificate.                                                                                                                                                                                                                                                                                                                                                                           |
  | Certificate Dns Names       | A comma-separated list of additional domais to be secured. Can result in additional costs.                                                                                                                                                                                                                                                                                                                             |
  | Certificate Signature Hash  | The hash algorithm used to sign the certificate. Code signing certificates supports only `SHA-256`.                                                                                                                                                                                                                                                                                                                    |
  | Certificate Signing Request | The certificate signing request in PEM format.                                                                                                                                                                                                                                                                                                                                                                         |
  | Order Validity              | The validity period of the certificate.<br /><br />**For Example:**<br /><pre><code>\{<br />  "years": 1<br />}</code></pre>                                                                                                                                                                                                                                                                                           |
  | Organization ID             | The ID of an existing organization to associate with the order. Can be obtained from the `List Orders` action.<br /><br />**Note:** Not required when creating a new organization with the request.                                                                                                                                                                                                                    |
  | Product Type Hint           | Select the SSL product type.                                                                                                                                                                                                                                                                                                                                                                                           |
  | Renewal Of Order ID         | The ID of the existing order this certificate renews. Can be obtained from the `List Orders` action.<br /><br />**Note:** Required for renewals when `Renewed Thumbprint` is not provided.                                                                                                                                                                                                                             |
  | Renewed Thumbprint          | The thumbprint of the certificate being renewed.<br /><br />**Note:** Required for renewals when `Renewal of Order ID` is not provided.<br /><br />For more information about certificate thumbprints refer to [DigiCert documentation](https://knowledge.digicert.com/solution/how-to-check-a-certificates-thumbprint?_gl=1*4u1pzf*_gcl_au*MTcwOTU4NTMyOS4xNzc3OTY4ODQ3LjE3NTc3NDI3OTMuMTc3Nzk3MDU5NS4xNzc3OTcwOTMw). |
  | Server Platform ID          | Select the ID of the server platform.                                                                                                                                                                                                                                                                                                                                                                                  |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter             | Description                                                                                                                                                                                                                                                                                                                                                                                                                          |
  | --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Additional Parameters | A JSON object for additional body parameters. Values specified in this parameter will override equivalent parameters.<br /><br />For example:<br /><pre><code>\{<br />    "first\_key": 12345,<br />    "second\_key": "some\_value"<br />}</code></pre>The object must follow the vendor's structure as defined in the [API documentation](https://dev.digicert.com/certcentral-apis/services-api/orders/order-ssl-type_hint.html). |
</div>

## Example Output

```json theme={"dark"}
{
	"id": 112233,
	"requests": [
		{
			"id": 113,
			"status": "approved"
		}
	],
	"domains": [
		{
			"id": 1469,
			"name": "example.com",
			"dns_name": "example.com"
		}
	]
}
```

## Workflow Library Example

[Order Ssl with Digicert and Send Results Via Email](https://library.blinkops.com/workflows/order-ssl-with-digicert-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/order-ssl-with-digicert-and-send-results-via-email/canvas" />
</div>
