Skip to main content
PUT
/
api
/
keys
Create or upload a store key
curl --request PUT \
  --url https://app.telentir.com/api/keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "server": "<string>",
  "key": "<string>",
  "iv": "<string>"
}
'
"<string>"

Authorizations

Authorization
string
header
required

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

Body

application/json
server
string
required
key
string

Base64 encoded AES key (optional)

iv
string

Base64 encoded IV (required if key is provided)

Response

Key ID or published key details

Key ID