RSA Key Management
Uploads the merchant’s public RSA key. This key is used to encrypt private keys before they are returned via the API.
Important: Uploading a public RSA key is a mandatory step. Without it, the platform cannot securely deliver encrypted private keys for your wallets.
RSA Key Management
POST https://api-processing.crypto-chief.com/v1/rsa/upload
Headers
Name
Value
Content-Type
application/json
Signature
Signed request body
Merchant
Merchant ID
Body
Name
Type
Required
Description
public_rsa_key
string
true
RSA key
Response
{
"status": "ok",
}{
"data": null,
"error": {
"status": 400,
"name": "BadRequestError",
"message": "Bad request, RSA already Exist",
"details": {}
}
}Last updated