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>"
}
}
]
}
List all Private Key Tags within an Organization
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>"
}
}
]
}
Show privateKeyTags details
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>"
}
}
]
}
Was this page helpful?