View KeyLocker signatures

GET https://www.digicert.com/services/v2/order/certificate/12345/signature-unit
Use this endpoint to get details about the number of signatures purchased and used for a code signing certificate order using the DigiCert KeyLocker provisioning method.

Example requests and responses

cURL

curl --request GET 'https://www.digicert.com/services/v2/order/certificate/12345/signature-unit' \
--header 'X-DC-DEVKEY: {{api_key}}' \
--header 'Content-Type: application/json' \

200 OK

{
  "signatures":[
    {
      "signatures_allotted": 31000,
      "signatures_consumed": 0,
    }
  ],
  "user_assigned": [
    {
      "name": "John Doe",
      "email": john.doe@example.com
    }
  ],
  "account_id": 7310002,
  "order_id": 1234568,
  "certificate_id": 2345679
}

Path parameters

NameReq/OptTypeDescription
order_idrequiredstringID of a Code Signing Certificate order using the KeyLocker provisioning method.

Response parameters

NameTypeDescription
signaturesobjectDetails about the KeyLocker signatures for the order.
.. signatures_allottedintegerTotal number of signatures purchased for the order.
.. signatures_consumedintegerTotal number of signatures used for the order.
user_assignedobjectDetails about the KeyLocker user assigned to the code signing certificate.
.. namestringName of user assigned to the certificate.
.. emailstringEmail address of user assigned to the certificate.
account_idintegerAccount ID.
order_idintegerOrder ID.
certificate_idintegerCertificate ID.