> ## Documentation Index > Fetch the complete documentation index at: https://docs.britive.com/llms.txt > Use this file to discover all available pages before exploring further. # List Secret Rotation History > Lists all rotation history for a secret, ordered by date (newest first). ## OpenAPI ````json GET /api/v1/secretmanager/vault/{vaultId}/secrets/{secretId}/rotate/history { "openapi": "3.0.1", "info": { "title": "Secret Manager APIs", "version": "v1", "description": "API documentation for Secret Manager, Policy Administration, Notifications, Approval service, etc." }, "servers": [ { "url": "https://{tenantURL}", "description": "The primary server", "variables": { "tenantURL": { "default": "test.britive-app.com", "description": "The host of the server" } } } ], "security": [ { "bearerAuth": [] } ], "tags": [ { "name": "Approvals" }, { "name": "Notification Service" }, { "name": "Policy Administration" }, { "name": "Secrets Manager" }, { "name": "Secret Rotation" } ], "paths": { "/api/v1/secretmanager/vault/{vaultId}/secrets/{secretId}/rotate/history": { "get": { "tags": [ "Secret Rotation" ], "summary": "List Secret Rotation History", "description": "Lists all rotation history for a secret, ordered by date (newest first).", "operationId": "listSecretRotationHistory", "parameters": [ { "name": "vaultId", "in": "path", "description": "Vault identifier", "required": "true", "schema": { "type": "string" }, "example": "a6ed82f6-32b5-46d8-a3a3-c36cc574abd9" }, { "name": "secretId", "in": "path", "description": "Secret identifier", "required": "true", "schema": { "type": "string" }, "example": "secret-123" }, { "name": "size", "in": "query", "description": "Page size for pagination", "required": "false", "schema": { "type": "integer", "format": "int32", "default": "10" }, "example": "10" }, { "name": "lastKey", "in": "query", "description": "Last evaluated key for pagination", "required": "false", "schema": { "type": "string" } } ], "responses": { "200": { "description": "List of rotation history entries", "content": { "application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/SecretRotationHistoryDTO" } } } } }, "404": { "description": "Secret not found" } } } } }, "components": { "schemas": { "SecretRotationHistoryDTO": { "type": "object", "properties": { "timeId": { "type": "integer", "format": "int64" }, "rotationStartedAt": { "type": "string" }, "vaultId": { "type": "string" }, "secretId": { "type": "string" }, "secretNature": { "type": "string" }, "rotationCompletedAt": { "type": "string" }, "rotatedBy": { "type": "string" }, "rotationType": { "type": "string" }, "rotationStatus": { "type": "string" }, "summary": { "type": "string" } } } }, "securitySchemes": { "bearerAuth": { "type": "http", "scheme": "bearer" } } } } ````