POST
Authorizations
Body
Unique identifier for a given Organization.
Name of enclave app.
Response
A successful response returns the following fields:bootProof field
curl --request POST \
--url https://api.turnkey.com/public/v1/query/get_latest_boot_proof \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <string> (see Authorizations)" \
--data '{
"organizationId": "<string>",
"appName": "<string>"
}'
{
"bootProof": {
"ephemeralPublicKeyHex": "<string>",
"awsAttestationDocB64": "<string>",
"qosManifestB64": "<string>",
"qosManifestEnvelopeB64": "<string>",
"deploymentLabel": "<string>",
"enclaveApp": "<string>",
"owner": "<string>",
"createdAt": {
"seconds": "<string>",
"nanos": "<string>"
}
}
}
Get the latest boot proof for a given enclave app name.
Show bootProof details
curl --request POST \
--url https://api.turnkey.com/public/v1/query/get_latest_boot_proof \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <string> (see Authorizations)" \
--data '{
"organizationId": "<string>",
"appName": "<string>"
}'
{
"bootProof": {
"ephemeralPublicKeyHex": "<string>",
"awsAttestationDocB64": "<string>",
"qosManifestB64": "<string>",
"qosManifestEnvelopeB64": "<string>",
"deploymentLabel": "<string>",
"enclaveApp": "<string>",
"owner": "<string>",
"createdAt": {
"seconds": "<string>",
"nanos": "<string>"
}
}
}
Was this page helpful?