> ## 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 Multi-year Plan

Generate an order or renewal request for certificates using Multi-year Plan subscriptions.

**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-multi-year-plan.html).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter                    | Description                                                                                                                                                                                                                                                                                                                                                                                                            |
  | ---------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Billing Address              | The street address associated with the credit card.                                                                                                                                                                                                                                                                                                                                                                    |
  | Billing Address City         | The city associated with the credit card billing address.                                                                                                                                                                                                                                                                                                                                                              |
  | Billing Address Country      | The country associated with the credit card billing address.                                                                                                                                                                                                                                                                                                                                                           |
  | Billing Address State        | The state or province associated with the credit card billing address.                                                                                                                                                                                                                                                                                                                                                 |
  | Billing Address Zip          | The ZIP or postal code associated with the credit card billing address.                                                                                                                                                                                                                                                                                                                                                |
  | Cardholder Name              | The name of the cardholder as it appears on the credit card.                                                                                                                                                                                                                                                                                                                                                           |
  | 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.                                                                                                                                                                                                                                                                                                                                                                         |
  | Credit Card CVV              | The CVV security code of the credit card.                                                                                                                                                                                                                                                                                                                                                                              |
  | Credit Card Expiration Month | The expiration month of the credit card. The valid range is `01`-`12`.                                                                                                                                                                                                                                                                                                                                                 |
  | Credit Card Expiration Year  | The expiration year of the credit card. The format is `YYYY`.                                                                                                                                                                                                                                                                                                                                                          |
  | Credit Card Number           | The credit card number to charge for this order.                                                                                                                                                                                                                                                                                                                                                                       |
  | 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.                                                                                                                                                                                                                    |
  | Payment Method               | Select the payment method to use for this order.                                                                                                                                                                                                                                                                                                                                                                       |
  | Product ID                   | Select the product ID for the certificate type to order.                                                                                                                                                                                                                                                                                                                                                               |
  | 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-multi-year-plan.html). |
</div>

## Example Output

```json theme={"dark"}
{
	"id": 112233,
	"domains": [
		{
			"id": 1469,
			"name": "example.com",
			"dns_name": "example.com"
		}
	],
	"certificate_id": 113,
	"certificate_chain": [
		{
			"subject_common_name": "example.com",
			"pem": "<pem_certificate>"
		}
	]
}
```

## Workflow Library Example

[Order Multi Year Plan with Digicert and Send Results Via Email](https://library.blinkops.com/workflows/order-multi-year-plan-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-multi-year-plan-with-digicert-and-send-results-via-email/canvas" />
</div>
