Usa questo endpoint per elencare tutti gli ordini voucher.
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
}
}
Nome | Tipo | Descrizione |
voucher_orders | object | Contenitore che elenca tutti gli ordini voucher nel tuo account. |
..id | int | ID ordine voucher. |
..status | string |
Stato dell’ordine voucher. Valori possibili: completed , canceled
|
..cost | int | Costo totale dell’ordine voucher. |
..created_date | string |
Data in cui è stato creato l’ordine voucher. Formato: YYYY-MM-DD HH:MM:SS
|
..expiration_date | string |
Data in cui scade l’ordine voucher. Formato: YYYY-MM-DD
|