listRecentChanges
Track and display recent translation changes in Weblate projects, filter by user or timestamp, and manage updates efficiently.
Instructions
List recent changes across all projects in Weblate
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of changes to return (default: 20) | |
| timestampAfter | No | Show changes after this timestamp (ISO format) | |
| timestampBefore | No | Show changes before this timestamp (ISO format) | |
| user | No | Filter by specific user |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 20,
"description": "Number of changes to return (default: 20)",
"type": "number"
},
"timestampAfter": {
"description": "Show changes after this timestamp (ISO format)",
"type": "string"
},
"timestampBefore": {
"description": "Show changes before this timestamp (ISO format)",
"type": "string"
},
"user": {
"description": "Filter by specific user",
"type": "string"
}
},
"type": "object"
}