Skip to main content
Glama

get_schedule_by_id

Retrieve specific schedule details using a unique schedule ID from Alteryx Server for workflow automation management.

Instructions

Get a schedule by its ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
schedule_idYes

Implementation Reference

  • MCP server tool handler for 'get_schedule_by_id' that delegates execution to the tools instance method.
    @self.app.tool() def get_schedule_by_id(schedule_id: str): """Get a schedule by its ID""" return self.tools.get_schedule_by_id(schedule_id)
  • Core implementation of get_schedule_by_id that fetches the schedule from the Alteryx server API using schedules_api and formats the response with pprint.
    def get_schedule_by_id(self, schedule_id: str): """Get a schedule by its ID""" try: api_response = self.schedules_api.schedules_get_schedule(schedule_id) return pprint.pformat(api_response) except ApiException as e: return f"Error: {e}"

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jupiterbak/AYX-MCP-Wrapper'

If you have feedback or need assistance with the MCP directory API, please join our Discord server