Manage KV namespaces and keys using theDocumentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
telnyx-edge CLI.
Check out our upcoming events and meetups! View events →
Manage Telnyx KV namespaces and keys from your terminal using the telnyx-edge CLI, including create, list, put, get, and delete operations.
Manage KV namespaces and keys using theDocumentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
telnyx-edge CLI.
# List all namespaces
telnyx-edge storage kv list
# Create a namespace
telnyx-edge storage kv create --name my-cache
# Delete a namespace
telnyx-edge storage kv delete <namespace-id>
# List keys in a namespace
telnyx-edge storage kv key list <namespace-id>
# Get a value
telnyx-edge storage kv key get <namespace-id> <key>
# Put a value
telnyx-edge storage kv key put <namespace-id> <key> "value"
# Put a value with TTL (expires in 3600 seconds)
telnyx-edge storage kv key put <namespace-id> <key> "value" --ttl 3600
# Put a value with metadata
telnyx-edge storage kv key put <namespace-id> <key> "value" --metadata '{"type":"session"}'
# Delete a key
telnyx-edge storage kv key delete <namespace-id> <key>
Was this page helpful?