- Home
- API MCP Server
- tools
- tenant-and-identity
- tenant-management
- Last Login
Last Login
GetLastLoginMap returns last login timestamp for each user within a tenant.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-last-login-list | GetLastLoginMap. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Last Login resources:
List Last Logins
Section titled “List Last Logins”“List all last-logins in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/last_logins" \ -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}/last_logins/<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}/last_logins" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @last_login.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/last_logins/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"