- Home
- API MCP Server
- tools
- tenant-and-identity
- tenant-management
- Login In Time
Login In Time
GetLoginEventsInTimeFrame returns login events for specified period of time. It consider all users specified by context tenant.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-login-in-time-create | GetLoginEventsInTimeFrame. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Login In Time resources:
Create Login In Time
Section titled “Create Login In Time”“Create a login-in-time named ‘example’ in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/login_in_times" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Get specific resourcecurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/login_in_times/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Create resourcecurl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/login_in_times" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @login_in_time.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/login_in_times/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"