Error Management Marketplace Template

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?

Hey Dave....

The api path to get the retry data is the following:

.../flows/<_flowid>/<_exportId>/<_retryDataKey>/data

There is some additional doc here if you need:

https://docs.celigo.com/hc/en-us/articles/7708779714715-Errors-API-endpoints#-data-4

Hope that's helpful!

---Tony

You da man @tonycurcio. That was the piece I was missing! Thanks so much for the help!

Glad that helped.

We had to use the API in the mobile app beta that we built, so was familiar with it.