paperclip_get_routine
Fetch a routine by UUID, showing triggers and recent runs to inspect concurrency policy and catch-up settings before editing.
Instructions
Get a single routine by UUID, including its triggers and recent runs.
Args:
routineId: string — Routine UUID (example: "rtn_abc123")
response_format: 'markdown' | 'json' (optional) — Output format (default: markdown)
Returns: Routine object: id, name, agentId, triggers[], recentRuns[], concurrencyPolicy, catchUpPolicy.
Examples:
Use when: inspecting a routine's current triggers before modifying them
Don't use when: you need all routine IDs — use paperclip_list_routines first
Error Handling:
401: authentication failed → check PAPERCLIP_API_KEY
404: routine not found → verify ID with paperclip_list_routines
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| routineId | Yes | Routine UUID | |
| response_format | Yes | Output format: 'markdown' (default, human-readable) or 'json' (structured) | markdown |