Register a new API User
Last updated 1 year ago
This guide will walk you through the steps to register a new API user on your ledger enterprise workspace, ensuring a secure and professional integration. Follow these detailed instructions to obtain the authentication keys needed to access Ledger Enterprise API seamlessly.
Step 1: Generate API Operator Authentication Keys
Generate the API Operator keys pairs in hexadecimal output format using :
Elliptic curve
SECP256R1
Private key encoding
encoding
PEM
private format
TraditionalOpenSSL
public key encoding
encoding
X962
private format
X9.62 Uncompressed Point
To generate authentication keys in the required format you can get inspiration from the provided code samples:
Python
Javascript
Example Response:
Safeguard the private key, as it is critical for secure API access.
The following techniques exist to store your private key:
store in file with correct permissions
store in a Key Management System (most cloud providers have one)
store in a secured vault
Storing the private key in a database is not recommended.
Monitoring accesses on the private key is recommended.
Step 2: Register the API Operator key pairs to the Workspace
Log in as an Admin to your Ledger Enterprise workspace.
Navigate to the Users section and click "Invite User."
Select "Operator - Via Self Managed Key Pair."
Enter the API username (e.g., demo api user) and the API user public key.
Confirm and seek approval from other Admins.
Step 3: Generate API Access for the New API Operator
Visit the Users page and click "Generate API Access" next to the respective user. This action is one-time, but API secret regeneration is possible via user permission settings.
Copy the API Key ID and API Secret to a secure location, theses are the authentication credentials.
Include the new API user in relevant groups/account rules for precise access control.
Congratulations! Your API Operator is successfully registered. Should you require any assistance or have inquiries, our dedicated support team is here to help.
Last updated