Update order status

PUT https://www.digicert.com/services/v2/order/certificate/{{order_id}}/status
Use this endpoint to update the status of the order with the given order_id. By updating the status of an order, you can:

  • Cancel a pending order for a new or renewed certificate. To cancel a pending order, the order status must be pending or waiting_pickup.
  • Cancel a pending reissue. To cancel a pending reissue, the order status must be reissue_pending.
  • Mark a migrated certificate order as either renewed or not_renewed. To mark a migrated certificate order as renewed, the certificate must be within 90 days of expiring, or it must have already expired. To mark a migrated certificate order as not_renewed, the order must already be marked as renewed.

Example requests and response

curl -X PUT \
  'https://www.digicert.com/services/v2/order/certificate/{{order_id}}/status' \
  -H 'Content-Type: application/json' \
  -H 'X-DC-DEVKEY: {{api_key}}' \
  -d '{
    "status": "canceled",
    "note": "Message about the cancellation."
}'
import requests

url = "https://www.digicert.com/services/v2/order/certificate/{{order_id}}/status"

payload = "{\n    \"status\": \"canceled\",\n    \"note\": \"Message about the cancellation.\"\n}"
headers = {
    'X-DC-DEVKEY': "{{api_key}}",
    'Content-Type': "application/json"
    }

response = requests.request("PUT", url, data=payload, headers=headers)

print(response.text)
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io/ioutil"
)

func main() {

	url := "https://www.digicert.com/services/v2/order/certificate/{{order_id}}/status"

	payload := strings.NewReader("{\n    \"status\": \"canceled\",\n    \"note\": \"Message about the cancellation.\"\n}")

	req, _ := http.NewRequest("PUT", url, payload)

	req.Header.Add("X-DC-DEVKEY", "{{api_key}}")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := ioutil.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
var request = require("request");

var options = { method: 'PUT',
  url: 'https://www.digicert.com/services/v2/order/certificate/{{order_id}}/status',
  headers: 
   { 'Content-Type': 'application/json',
     'X-DC-DEVKEY': '{{api_key}}' },
  body: { status: 'canceled', note: 'Message about the cancellation.' },
  json: true };

request(options, function (error, response, body) {
  if (error) throw new Error(error);

  console.log(body);
});

204 No Content

// empty

Request parameters

NameReq/OptTypeDescription
statusrequiredstringUpdated status for the order.
Allowed values (case sensitive):
noteconditionalstringCustom message about the status change.
The note parameter is required when canceling an order, and optional when performing other status update operations.