What Causes Jobs numResolved Field to Increase

I'm using the Celigo REST API to fetch job execution data and have a question about the response data.

API Endpoint: GET /v1/jobs
Base URL: https://api.integrator.io/v1/jobs

The numResolved field is always 0 for me, and I’m wondering what specifically can cause it to be greater than 0. Manually resolving errors in the console does not seem to affect it. And re-running the same record through the flow a second (successful) time does not seem to affect it.

Is there any way I can deliberately trigger this to be greater than 0?

Thank you in advance!

The numResolved will only increment when it's an error that was auto-resolved during the flow execution, not after. For example, if you have auto-recover from rate limits enabled for your connection, and then we hit rate limit errors and auto-resolve them because we back off, those would show as resolved errors in the job. Also, if we hit an auth error, which we can then auto-resolve because we were able to fetch a new access token, that would show in numResolved.

2 Likes