Workflows and apps
App handler invocations
Recent handler invocations against the live app: status, timing, cache hits, and errors.
GET
https://cloud.generalinput.com/v1/workflows/:id/app/invocationsAuthenticationRequires
workflows:manage on a personal API key. A CLI session always passes.Query parameters
| Name | Type | Notes |
|---|---|---|
handler | string | Only this handler. |
errors | boolean | true for failed invocations only. |
limit | integer | 1 to 100. Default 20. |
Response
{
"invocations": [
{
"id": "b7f0c412-58ad-4e93-9c26-0f31a85be7d4",
"handlerName": "listCustomers",
"status": "error",
"inputPreview": "{\"limit\":50}",
"outputPreview": null,
"errorMessage": "Stripe returned 429",
"durationMs": 812,
"cacheHit": false,
"createdAt": "2026-09-03T10:05:00.000Z"
}
]
}status is ok, error, or timeout.