or run

npx @tessl/cli init
Log in

Version

Tile

Overview

Evals

Files

Files

docs

administration.mdassistants-threads.mdbatch-processing.mdbeta-realtime.mdchat-completions.mdconfiguration-management.mdcontainer-content.mdcore-client.mdembeddings.mdevaluation-testing.mdfeedback-collections.mdfile-management.mdfine-tuning.mdframework-integrations.mdindex.mdkey-management.mdmodels.mdmultimodal-apis.mdobservability-analytics.mdprompt-management.mdprovider-integration.mdtext-completions.mduploads.mdvector-stores.md

key-management.mddocs/

0

# API Key & Virtual Key Management

1

2

Secure API key and virtual key management for credential protection and access control.

3

4

## Capabilities

5

6

```python { .api }

7

class ApiKeys:

8

def create(self, **kwargs): ...

9

def list(self, **kwargs): ...

10

def retrieve(self, **kwargs): ...

11

def update(self, **kwargs): ...

12

def delete(self, **kwargs): ...

13

14

class VirtualKeys:

15

def create(self, **kwargs): ...

16

def list(self, **kwargs): ...

17

def retrieve(self, **kwargs): ...

18

def update(self, **kwargs): ...

19

def delete(self, **kwargs): ...

20

```