get-routines
Retrieve a paginated list of routines with details such as title, creation date, folder assignment, and exercise configurations. Supports both default and custom routines for efficient fitness data management.
Instructions
Get a paginated list of routines. Returns routine details including title, creation date, folder assignment, and exercise configurations. Results include both default and custom routines.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | ||
pageSize | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"default": 1,
"minimum": 1,
"type": "integer"
},
"pageSize": {
"default": 5,
"maximum": 10,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}