GET
/admin/webapp-key
const url = 'https://example.com/admin/webapp-key';const options = {method: 'GET', headers: {'X-Tenzir-AdminKey': '<X-Tenzir-AdminKey>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/admin/webapp-key \ --header 'X-Tenzir-AdminKey: <X-Tenzir-AdminKey>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Successful Response
Media type application/json
KeyResponse
object
key
required
Key
string
Example generated
{ "key": "example"}