Functions
List a function's execution logs
Returns the most recent function_logs rows for the function, newest first. Each row is a single console.log / console.error invocation captured from the running handler.
Page through history with the opaque cursor returned as next_cursor; pass it back as the cursor query param on the next call. next_cursor is null when there are no further rows. The cursor format is an implementation detail and should not be parsed by callers.
get/functions/{id}/logs
Query parameters
limitinteger
Maximum number of rows to return. Clamped to 1..200; default 50.
cursorstring
Opaque pagination cursor from a previous response's next_cursor. Omit on the first call.
Response
List of log rows (newest first) plus pagination cursor.