Skip to main content
Logs record what ran on your platform and what happened at each step. Use them to monitor workflow executions, troubleshoot errors down to the individual node, and inspect the triggers, webhooks, and schedules behind them. Open Logs in Refold and switch tabs by log type.

Log types

TabRecordsUse it to
ExecutionsEvery workflow run, with per-node input and outputTrace a run, find the failing node, and replay it
EventsEvents fired and the workflows they triggeredConfirm an event arrived and see what it started
WebhooksWebhook deliveries and their request/response dataVerify a webhook fired and inspect its payload
SchedulesScheduled workflows and their cron configurationCheck what’s scheduled and whether it’s active
For connection and sign-in activity, see integration logs and the audit log instead.

Execution logs

The Executions tab shows every workflow run with full execution detail and request/response data. Filter by workflow name, status, linked account, and more to find the run you need.
Save a set of filters as a reusable view. Click + New View in the top-right of the Executions screen, apply your filters, and click Save. The view appears as a tab you can return to.
Click a run to expand it and see each node’s status, response, and any error. This shows the execution path and pinpoints where a run failed.
For a run that errored, click Replay to re-run the whole workflow, or Retry on an individual errored node to run just that node again.
Replay is limited to a single attempt per run.
Replaying or retrying re-executes the workflow’s actions, making real API calls to the connected app. A replayed run can repeat side effects such as creating a record. See idempotency for how to make repeats safe.

Event logs

The Events tab shows the events fired and the triggers they called. Filter by event name, status, and linked account ID. Each entry shows the workflows the event executed, the event URL, and the payload sent.
The Workflows section of an event log is empty when no workflow was associated with that event.

Webhook logs

The Webhooks tab lets you monitor webhook deliveries. Each entry shows the execution status, linked account ID, fired date, and the request and response data exchanged between Refold and the external system.

Schedule logs

The Schedules tab gives visibility into scheduled workflows. Each entry shows:

Workflow name and ID

The workflow scheduled for execution.

Schedule cron

The cron expression defining when it runs.

Event

The event ID that triggers the scheduled workflow.

Status

Whether the schedule is Active or Inactive.

See also