Documentation Index
Fetch the complete documentation index at: https://docs.turnkey.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
API Key
WebAuthn (Passkey)
Cryptographically signed (stamped) request to be passed in as a header. For more info, see
here.
Cryptographically signed (stamped) request to be passed in as a header. For more info, see
here.
Body
Unique identifier for a given organization.
Response
A successful response returns the following fields:
A list of private key tags.Show privateKeyTags details
Unique identifier for a given Tag.
Human-readable name for a Tag.
tagType fieldEnum options: TAG_TYPE_USER, TAG_TYPE_PRIVATE_KEY
createdAt field
privateKeyTags.createdAt.seconds
privateKeyTags.createdAt.nanos
updatedAt field
privateKeyTags.updatedAt.seconds
privateKeyTags.updatedAt.nanos
curl --request POST \
--url https://api.turnkey.com/public/v1/query/list_private_key_tags \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <string> (see Authorizations)" \
--data '{
"organizationId": "<string>"
}'
{
"privateKeyTags": [
{
"tagId": "<string>",
"tagName": "<string>",
"tagType": "<TAG_TYPE_USER>",
"createdAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"updatedAt": {
"seconds": "<string>",
"nanos": "<string>"
}
}
]
}