Skip to main content
GET
/
api
/
keys
/
{id}
Retrieve key material
curl --request GET \
  --url https://app.telentir.com/api/keys/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "server": "<string>",
  "key": "<string>",
  "iv": "<string>",
  "deprecated": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

Stored key information

id
string
server
string
key
string

Hex encoded AES key

iv
string

Hex encoded IV

deprecated
boolean