get-routine-folders
Retrieve a paginated list of routine folders to organize workout routines by categories. Returns folder details including ID, title, order position, and timestamps for better management.
Instructions
Get a paginated list of routine folders available on the account. Returns folder details including ID, title, index (order position), and creation/update timestamps. Useful for organizing routines into categories.
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"
}