Skip to main content
GET
/
workflows
/
{workflowId}
/
errors
Retrieve all error logs for a workflow
curl --request GET \
  --url https://production.runalloy.com/workflows/{workflowId}/errors \
  --header 'Authorization: <authorization>' \
  --header 'x-api-version: <x-api-version>'
"{\n  data: [ {\n    workflowId: '632531cf3beb6c98611abd09',\n    connector: 'shopify',\n    errorOccurredAt: '2022-09-17T22:12:34.567Z',\n    message: 'The customer failed to create due to an invalid Id'\n  }]\n}\n"

Headers

Authorization
string
default:bearer YOUR_API_KEY
required
x-api-version
string
default:2025-09
required

The version of the API to use. The current API version is 2025-09.

Path Parameters

workflowId
string
required

The Id of the workflow you want to find errors for

Query Parameters

userId
string

The Id of the user

Response

200

The response is of type any.

I