Use this endpoint to list all voucher orders.
https://www.digicert.com/services/v2/voucher/
{
"voucher_orders": [
{
"id": 1002,
"status": "canceled",
"cost": 100,
"created_date": "2020-04-17 09:41:22",
"expiration_date": "2021-04-17"
},
{
"id": 1003,
"name": "ACME Corp",
"status": "completed",
"cost": 85,
"created_date": "2020-04-17 09:44:26",
"expiration_date": "2021-04-17"
}
],
"page": {
"total": 2,
"limit": 1000,
"offset": 0
}
}
Name | Type | Description |
voucher_orders | object | Container that lists all voucher orders in your account. |
..id | int | Voucher order ID. |
..status | string |
Status of Voucher order. Possible values: completed , canceled
|
..cost | int | Total cost of voucher order. |
..created_date | string |
Date that voucher order was created. Format: YYYY-MM-DD HH:MM:SS
|
..expiration_date | string |
Date that voucher order expires. Format: YYYY-MM-DD
|