> ## 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.

# List Orders

Retrieve all certificate orders.

<Note>
  External Documentation

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

## Parameters

<div className="integrations-table">
  | Parameter              | Description                                                                                                                                                                 |
  | ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Date Created           | The creation date to filter orders by.                                                                                                                                      |
  | Email or Domain Search | The `email address` or `common name` partial match to filter orders by.<br /><br />**Note:** To search for values that contain a specific string add '%' before the string. |
  | Limit                  | The maximum number of orders to return per page. Maximum value is `5000`.                                                                                                   |
  | Offset                 | The index of the first result to return.                                                                                                                                    |
  | Order ID               | The order ID to filter orders by.                                                                                                                                           |
  | Order Status           | Select the status to filter orders by.                                                                                                                                      |
  | Return All Pages       | Automatically fetch all resources, page by page.                                                                                                                            |
  | Sort                   | Select the field name to sort the results by. Select ascending or descending for each field.                                                                                |
  | Valid Until            | The certificate expiration date to filter orders by.                                                                                                                        |
</div>

## Example Output

```json theme={"dark"}
{
	"orders": [
		{
			"id": 123456,
			"certificate": {
				"id": 104,
				"common_name": "example.com",
				"dns_names": [
					"example2.com",
					"example3.com"
				],
				"signature_hash": "sha256"
			},
			"status": "pending",
			"is_renewed": false,
			"date_created": "2018-10-16T17:29:56+00:00",
			"organization": {
				"id": 112233,
				"name": "Epigyne Unwieldiness llc"
			},
			"validity_years": 1,
			"disable_renewal_notifications": false,
			"container": {
				"id": 14,
				"name": "DigiCert Inc."
			},
			"product": {
				"name_id": "ssl_plus",
				"name": "Standard SSL",
				"type": "ssl_certificate"
			},
			"has_duplicates": false,
			"product_name_id": "ssl_plus"
		}
	],
	"page": {
		"total": 31,
		"limit": 0,
		"offset": 0
	}
}
```

## Workflow Library Example

[List Orders with Digicert and Send Results Via Email](https://library.blinkops.com/workflows/list-orders-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/list-orders-with-digicert-and-send-results-via-email/canvas" />
</div>
