Updated getOrdersStatus (markdown)
parent
082f0b5da4
commit
a8172a8061
|
@ -15,6 +15,7 @@ If no errors in request following parameters will be returned:
|
||||||
* certificates - array of certificates
|
* certificates - array of certificates
|
||||||
** order_id - unique order ID
|
** order_id - unique order ID
|
||||||
** status - certificate status (active, cancelled, expired, incomplete, new_order, unpaid, pending, processing, reissue, rejected,)
|
** status - certificate status (active, cancelled, expired, incomplete, new_order, unpaid, pending, processing, reissue, rejected,)
|
||||||
|
** expires - optional. If the status is 'active' the certificate expiration date is shown in this field.
|
||||||
|
|
||||||
|
|
||||||
### Example response
|
### Example response
|
||||||
|
@ -22,7 +23,7 @@ If no errors in request following parameters will be returned:
|
||||||
{
|
{
|
||||||
"certificates":[
|
"certificates":[
|
||||||
{"order_id":"1","status":"processing"},
|
{"order_id":"1","status":"processing"},
|
||||||
{"order_id":"2","status":"active"},
|
{"order_id":"2","status":"active", "expires": "2025-01-01"},
|
||||||
{"order_id":"3","status":"processing"}
|
{"order_id":"3","status":"processing"}
|
||||||
],
|
],
|
||||||
"success":true,
|
"success":true,
|
||||||
|
|
Loading…
Reference in New Issue