Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  • Contact Us
  • Home
  • API, CLI, and SDK Documentation
  • REST API Documentation
  • Migration Reports Using REST API

Reconciliation Tools Using REST API

Learn how to view reconciliation reports for migration jobs using the DryvIQ REST API.

Written by Andrea Harvey

Updated at May 2nd, 2025

Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  • Insights
    Prebuilt Insights Custom Insights
  • Content
  • Accounts
  • Activity Log
  • Content Scans
  • Migrations
    Migration Jobs Migration Reports Maps Flagged Items Migration Tools
  • Connections
    Supported Platform Connections Creating Connections Connection Maintenance Connection Pools
  • Entity Types
    DryvIQ Available Entity Types Custom Entity Types Entity Type Maintenance
  • Action Sets
    Creating Action Sets Action Sets Maintenance
  • Settings
    License Performance Notifications Extensions Entity Types Settings Display Settings Configuration
  • API, CLI, and SDK Documentation
    REST API Documentation Command-line Interface SDK Development
  • POC Offering
  • Release Notes
+ More

Table of Contents

Overview Verify all Requested Features for a Job Expected Response Review Job Warnings Example Response Job Audit History with Warnings Only Example Response Review Job Errors Example Response

Overview

This page outlines REST API calls you can use to help reconcile a job.

Verify all Requested Features for a Job

When creating your job using JSON, a wide variety of features may have been used. To verify that all were implemented as intended. We recommend verifying this by performing a Job Details call:

  1. Create your JSON with the desired features.
  2. Submit your job.
  3. Before you start your job, run the following request:
GET {{url}}v1/jobs/{{job}}?fields=all

Expected Response

The response will include each feature you requested. If your requested feature is not listed, it is likely due to incorrect JSON (not an invalid JSON). While your JSON may appear valid, your requested feature likely falls outside the transfer block. Review and update your request so the feature falls within the transfer block.

Review Job Warnings

After reviewing your Job Audit History, you may observe warnings that occurred after your job completes successfully. Here is how you can investigate these warnings.

GET {{url}}v1/jobs/{{job}}/history/?include=all

Example Response

{
   "status": 200,
   "meta": {
       "links": {
           "self": {
               "href": "http://000.000.0.250:9090/v1/jobs/{{job_id}}/history/?offset=0&limit=100&fields=all"
           },
           "download": {
               "href": "http://000.000.1.250:9090/v1/jobs/{{job_id}}/history/.csv"
           }
       },
       "offset": 0,
       "limit": 100,
       "fields": [
           "all"
       ],
       "total_count": 1
   },
   "type": "job_executions",
   "job_executions": [
       {
           "job_id": "{{job_id}}",
           "progress": 1,
           "phase": "complete",
           "id": 108,
           "start_time": 1522232339,
           "end_time": 1522232358,
           "duration": {
               "value": 18.91,
               "unit": "s"
           },
           "status": "completed",
           "node_address": "000.000.1.250",
           "stats": {
               "destination": {
                   "folders": 5,
                   "import": {
                       "metadata": 9
                   },
                   "new": {
                       "bytes": 116070,
                       "files": 10,
                       "versions": 10
                   },
                   "pending": {
                       "batches": 0,
                       "files": 0,
                       "versions": 0
                   },
                   "rate_limits": 0
               },
               "source": {
                   "pending": {
                       "batches": 0,
                       "files": 0,
                       "versions": 0
                   },
                   "rate_limits": 0
               },
               "warnings": 56
           }
       }
   ]
}

Job Audit History with Warnings Only

Run the call below.

GET {{url}}v1/transfers/{{job}}/auditing?level=warn

Copy the download link from the response body and paste it into your Chrome browser. You may need to log into the application again. Your browser will download the audit log with the warnings as a .csv file.

Example Response

{
   "status": 200,
   "meta": {
       "links": {
           "self": {
               "href": "http://000.000.1.250:9090/v1/transfers/{{job_id}}/auditing?offset=0&limit=100&audit_levels=warn&jobs={{job_id}}"
           },
           "download": {
               "href": "http://000.000.1.250:9090/v1/transfers/{{job_id}}/auditing.csv?audit_levels=warn&jobs={{job_id}}"
           }
       },
       "offset": 0,
       "limit": 100,
       "audit_levels": [
           "warn"
       ],
       "jobs": [
           "{{job_id}}"
       ]
   },
   "item": [
       {
           "target": {
               "id": 3828
           },
           "execution_id": 108,
           "event": "metadata_import_fail",
           "id": 4516,
           "level": "warn",
           "message": "The destination path could not be determined from the mapped source path. (line=2)",
           "recorded_on": 1522232351
       },
.......
.....................

Review Job Errors

Run the call below.

GET {{url}}v1/transfers/{{job}}/auditing?level=warn

Copy the download link from the response body and paste it into your Chrome browser. You may need to log into the application again. Your browser will download the audit log with just the warnings as a .csv file.

Example Response

{
   "status": 200,
   "meta": {
       "links": {
           "self": {
               "href": "http://000.000.1.250:9090/v1/transfers/{{job_id}}/auditing?offset=0&limit=100&audit_levels=error&jobs={{job_id}}"
           },
           "download": {
               "href": "http://000.000.1.250:9090/v1/transfers/{{job_id}}/auditing.csv?audit_levels=error&jobs={{job_id}}"
           }
       },
       "offset": 0,
       "limit": 100,
       "audit_levels": [
           "error"
       ],
       "jobs": [
           "{{job_id}}"
       ]
   },
   "item": [
       {
           "target": {
               "id": 3828
           },
           "execution_id": 108,
           "event": "fail",
           "id": 4515,
           "level": "error",
           "message": "Specified method is not supported.",
           "recorded_on": 1522232351
       },
.......
.....................

 

api rest api job reports migration reconciliation features warnings errors

Was this article helpful?

Yes
No
Give feedback about this article

Related Articles

  • Google Drive
  • Dropbox (REST API)
  • Dropbox for Business (REST API)

Copyright 2025 – DryvIQ.

Knowledge Base Software powered by Helpjuice

Expand