From a8172a8061fef1009d343c2ee8cda4c1b65bf8be Mon Sep 17 00:00:00 2001 From: Igors Savins Date: Tue, 21 Jul 2020 12:39:41 +0300 Subject: [PATCH] Updated getOrdersStatus (markdown) --- getOrdersStatus.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/getOrdersStatus.md b/getOrdersStatus.md index 38719ac..11b058e 100644 --- a/getOrdersStatus.md +++ b/getOrdersStatus.md @@ -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,