I just downloaded and installed the marketplace integration (Error automation via integrator.io APIs), but am a little confused on how to use it. I have entered in the flow id and step id for the import where the errors are occurring, and I can successfully retrieve the errors, however, I don't get back any data that I can retry with.
For example, here is a sample record of what I get back from the marketplace template:
{
"page_of_records": [
{
"record": {
"errors": [
{
"occurredAt": "2025-04-30T16:46:12.097Z",
"source": "lookup",
"code": "lookup_error",
"message": "Unable to find lookup value for Salesforce Account field \"Id\" given the query conditions \"(Id = null)\"",
"traceKey": "67260098",
"oIndex": "2",
"retryDataKey": "2d11d75a03454a0faa454b624162dec3",
"errorId": "1590271785",
"_flowJobId": "681253d2d1bcf2008163d031",
"reqAndResKey": "5512086827934-878487ae1ac141e88e9f70dffedb9677-200-GET",
"purgeAt": "1748623572097"
},
But what I really need is the payload thats in the error so I can take the payload and hit my lookup step to try to retrieve the Account Id and then import into the Account.
So how do I access the actual payload of the error?