goalstory_read_scheduled_stories
Retrieve a paginated list of scheduled story generation configurations for users. All times are in UTC, requiring conversion to the user's local time for accurate viewing.
Instructions
Get a list of all scheduled story generation configurations for the user, with optional pagination. IMPORTANT: All times stored in Goal Story are in UTC, so you'll have to convert that to the user's local time.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of scheduled stories to return per page. | |
page | No | Page number for viewing subsets of scheduled stories (starts at 1). |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum number of scheduled stories to return per page.",
"type": "number"
},
"page": {
"description": "Page number for viewing subsets of scheduled stories (starts at 1).",
"type": "number"
}
},
"type": "object"
}