Updated getOrdersStatus (markdown)

master
Igors Savins 2020-07-21 12:39:41 +03:00
parent 082f0b5da4
commit a8172a8061
1 changed files with 2 additions and 1 deletions

@ -15,6 +15,7 @@ If no errors in request following parameters will be returned:
* certificates - array of certificates
** order_id - unique order ID
** 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
@ -22,7 +23,7 @@ If no errors in request following parameters will be returned:
{
"certificates":[
{"order_id":"1","status":"processing"},
{"order_id":"2","status":"active"},
{"order_id":"2","status":"active", "expires": "2025-01-01"},
{"order_id":"3","status":"processing"}
],
"success":true,