versions_list
Retrieve version history for Piwik PRO Tag Manager apps with pagination support. Provides version details including ID, name, type, and timestamps for tracking app changes.
Instructions
List versions for an app in Piwik PRO Tag Manager.
Args:
app_id: UUID of the app
limit: Maximum number of versions to return (default: 10)
offset: Number of versions to skip (default: 0)
Returns:
Dictionary containing version list and metadata including:
- data: List of version objects with id, name, version_type, and timestamps
- meta: Metadata with pagination information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_id | Yes | ||
limit | No | ||
offset | No |
Input Schema (JSON Schema)
{
"properties": {
"app_id": {
"title": "App Id",
"type": "string"
},
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
}
},
"required": [
"app_id"
],
"type": "object"
}