Complete a BYOK Model-A signing-key import (SaaS)
curl --request POST \
--url https://slc.sandbox.lerian.net/v1/signing-key \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"encryptedKeyMaterialBase64": "<string>",
"importTokenBase64": "<string>",
"keyId": "<string>",
"participantIspb": "<string>",
"publicCertPem": "<string>"
}
'import requests
url = "https://slc.sandbox.lerian.net/v1/signing-key"
payload = {
"encryptedKeyMaterialBase64": "<string>",
"importTokenBase64": "<string>",
"keyId": "<string>",
"participantIspb": "<string>",
"publicCertPem": "<string>"
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Idempotency-Key': '<idempotency-key>',
Authorization: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
encryptedKeyMaterialBase64: '<string>',
importTokenBase64: '<string>',
keyId: '<string>',
participantIspb: '<string>',
publicCertPem: '<string>'
})
};
fetch('https://slc.sandbox.lerian.net/v1/signing-key', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://slc.sandbox.lerian.net/v1/signing-key",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'encryptedKeyMaterialBase64' => '<string>',
'importTokenBase64' => '<string>',
'keyId' => '<string>',
'participantIspb' => '<string>',
'publicCertPem' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://slc.sandbox.lerian.net/v1/signing-key"
payload := strings.NewReader("{\n \"encryptedKeyMaterialBase64\": \"<string>\",\n \"importTokenBase64\": \"<string>\",\n \"keyId\": \"<string>\",\n \"participantIspb\": \"<string>\",\n \"publicCertPem\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://slc.sandbox.lerian.net/v1/signing-key")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"encryptedKeyMaterialBase64\": \"<string>\",\n \"importTokenBase64\": \"<string>\",\n \"keyId\": \"<string>\",\n \"participantIspb\": \"<string>\",\n \"publicCertPem\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://slc.sandbox.lerian.net/v1/signing-key")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"encryptedKeyMaterialBase64\": \"<string>\",\n \"importTokenBase64\": \"<string>\",\n \"keyId\": \"<string>\",\n \"participantIspb\": \"<string>\",\n \"publicCertPem\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"certificateId": "<string>",
"kmsRef": "<string>",
"status": "<string>"
}{
"code": "<string>",
"details": {},
"message": "<string>",
"title": "<string>"
}{
"code": "<string>",
"details": {},
"message": "<string>",
"title": "<string>"
}{
"code": "<string>",
"details": {},
"message": "<string>",
"title": "<string>"
}{
"code": "<string>",
"details": {},
"message": "<string>",
"title": "<string>"
}{
"code": "<string>",
"details": {},
"message": "<string>",
"title": "<string>"
}{
"code": "<string>",
"details": {},
"message": "<string>",
"title": "<string>"
}Complete a BYOK Model-A signing-key import (SaaS)
Forwards the tenant’s already-wrapped, opaque key material (Model A — never cleartext) to KMS via a dedicated signing sidecar, then persists only the public certificate, the per-tenant KMS reference, and custody_provider=KMS (never key material). RBAC: admin-only provisioning role. Idempotent via the Idempotency-Key header.
POST
/
v1
/
signing-key
Complete a BYOK Model-A signing-key import (SaaS)
curl --request POST \
--url https://slc.sandbox.lerian.net/v1/signing-key \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"encryptedKeyMaterialBase64": "<string>",
"importTokenBase64": "<string>",
"keyId": "<string>",
"participantIspb": "<string>",
"publicCertPem": "<string>"
}
'import requests
url = "https://slc.sandbox.lerian.net/v1/signing-key"
payload = {
"encryptedKeyMaterialBase64": "<string>",
"importTokenBase64": "<string>",
"keyId": "<string>",
"participantIspb": "<string>",
"publicCertPem": "<string>"
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Idempotency-Key': '<idempotency-key>',
Authorization: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
encryptedKeyMaterialBase64: '<string>',
importTokenBase64: '<string>',
keyId: '<string>',
participantIspb: '<string>',
publicCertPem: '<string>'
})
};
fetch('https://slc.sandbox.lerian.net/v1/signing-key', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://slc.sandbox.lerian.net/v1/signing-key",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'encryptedKeyMaterialBase64' => '<string>',
'importTokenBase64' => '<string>',
'keyId' => '<string>',
'participantIspb' => '<string>',
'publicCertPem' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://slc.sandbox.lerian.net/v1/signing-key"
payload := strings.NewReader("{\n \"encryptedKeyMaterialBase64\": \"<string>\",\n \"importTokenBase64\": \"<string>\",\n \"keyId\": \"<string>\",\n \"participantIspb\": \"<string>\",\n \"publicCertPem\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://slc.sandbox.lerian.net/v1/signing-key")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"encryptedKeyMaterialBase64\": \"<string>\",\n \"importTokenBase64\": \"<string>\",\n \"keyId\": \"<string>\",\n \"participantIspb\": \"<string>\",\n \"publicCertPem\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://slc.sandbox.lerian.net/v1/signing-key")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"encryptedKeyMaterialBase64\": \"<string>\",\n \"importTokenBase64\": \"<string>\",\n \"keyId\": \"<string>\",\n \"participantIspb\": \"<string>\",\n \"publicCertPem\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"certificateId": "<string>",
"kmsRef": "<string>",
"status": "<string>"
}{
"code": "<string>",
"details": {},
"message": "<string>",
"title": "<string>"
}{
"code": "<string>",
"details": {},
"message": "<string>",
"title": "<string>"
}{
"code": "<string>",
"details": {},
"message": "<string>",
"title": "<string>"
}{
"code": "<string>",
"details": {},
"message": "<string>",
"title": "<string>"
}{
"code": "<string>",
"details": {},
"message": "<string>",
"title": "<string>"
}{
"code": "<string>",
"details": {},
"message": "<string>",
"title": "<string>"
}Authorizations
Bearer token authentication (format: "Bearer {token}")
Headers
Idempotency key for safe retries (MANDATORY on this high-sensitivity endpoint)
Body
application/json
Wrapped key material and target participant
Was this page helpful?
Test connectivity to Núclea for a participant
Previous
Start a BYOK Model-A signing-key import (SaaS)
Next
⌘I

