--- title: "View KeyLocker signatures" source_url: https://dev.digicert.com/certcentral-apis/services-api/orders/view-keylocker-signatures.html api_method: GET api_endpoint: "/services/v2/order/certificate/12345/signature-unit" api_url: "https://www.digicert.com/services/v2/order/certificate/12345/signature-unit" --- **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](https://dev.digicert.com/md/certcentral-apis/services-api/orders/order-code-signing-certificate.md#section-idm465267767396003370940554419) 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
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.
.. email string Email address of user assigned to the certificate.
account_id integer Account ID.
order_id integer Order ID.
certificate_id integer Certificate ID.