View KeyLocker signatures
less than a minute
GET
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.https://www.digicert.com/services/v2/order/certificate/12345/signature-unit
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
| Name | Req/Opt | Type | Description |
|---|---|---|---|
| order_id | required | string | ID of a Code Signing Certificate order using the KeyLocker provisioning method. |
Response parameters
| Name | Type | Description |
|---|---|---|
| signatures | object | Details about the KeyLocker signatures for the order. |
| .. signatures_allotted | integer | Total number of signatures purchased for the order. |
| .. signatures_consumed | integer | Total number of signatures used for the order. |
| user_assigned | object | Details about the KeyLocker user assigned to the code signing certificate. |
| .. name | string | Name of user assigned to the certificate. |
| string | Email address of user assigned to the certificate. | |
| account_id | integer | Account ID. |
| order_id | integer | Order ID. |
| certificate_id | integer | Certificate ID. |
Was this page helpful?
Provide feedback