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

Flagged Items Using REST API

Learn how to view flagged items 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

List All Flagged Items Set Single Item to Retry or Ignore Set Flagged Item for Retry Set Flagged Item to Ignore Set Multiple Items to Retry or Ignore Set Flagged Items for Retry Set Flagged Items to Ignore Set Flagged Items to Ignore Set Flagged Items to Ignore List All Items Set to Retry or Ignore List All Items Set to Retry List All Items Set to Ignore Show All Items for Remediation Show All System Error Categories Create Custom Error Category by Audit Type Create Custom Error Category by Event Type

List All Flagged Items

Use this request to list all items with a flagged status for all jobs. After review, items can be set to retry or be ignored on subsequent job runs.

GET {{url}}v1/transfers/items/flagged

Set Single Item to Retry or Ignore

When an item is flagged, you can reset its status to either “retry” or “ignore” on the next job run.

Set Flagged Item for Retry

PATCH {{url}}v1/transfers/items/{{item_id}}?retry=1

Set Flagged Item to Ignore

PATCH {{url}}v1/transfers/items/{{item_id}}?ignore=1

Set Multiple Items to Retry or Ignore

When items are flagged, you can reset their status to either “retry” or “ignore” for the next job run using the same filter options available for viewing those items.

Set Flagged Items for Retry

PATCH {{url}}v1/transfers/items?parent={{parentId}}&retry

Set Flagged Items to Ignore

PATCH {{url}}v1/transfers/items?id={{itemId}},{{itemId}},{{itemId}}&ignore

Set Flagged Items to Ignore

PATCH {{url}}v1/transfers/items?jobs={{jobId}}&ignore

Set Flagged Items to Ignore

PATCH {{url}}v1/transfers/{{jobdid}}/items?ignore

List All Items Set to Retry or Ignore

The following requests will list all items from all jobs that are set for retry or to be ignored on subsequent runs.

List All Items Set to Retry

GET {{url}}v1/transfers/items?status=retry

List All Items Set to Ignore

GET {{url}}v1/transfers/items?status=skipped

Show All Items for Remediation

GET {{url}}v1/transfers/{{job}}/items?status=remediation&include=all

Show All System Error Categories

When issues occur during transfer, DryvIQ categorizes the issues based on the error and flags the items for manual remediation. This allows you to identify areas for review.

GET {{url}}v1/transfers/categories?priority=all

Create Custom Error Category by Audit Type

DryvIQ allows you to create a custom error category by audit type. For example, you could group several error codes to develop a broader category to ignore.

POST {{url}}v1/transfers/categories
{
   "name": "Unknown",
   "description": "Items with unknown errors",
   "filter": {
       "rules": [{
           "text": "[audit_type]=5001",
           "type": "filter_context"
       }]
   },
   "action": "retry",
   "max_retry": 3
}

Create Custom Error Category by Event Type

DryvIQ allows you to create a custom error category by event type. For example, you could group several events, such as rename and update, to create a broader category to retry.

POST {{url}}v1/transfers/categories
{
   "name": "Event Type Rename",
   "description": "The event source of the original transfer operation = Rename",
   "filter": {
       "rules": [{
           "text": "[event_type]=rename",
           "type": "filter_context"
       }]
   },
   "action": "retry",
   "max_retry": 3
}

 

api rest api job flagged remediation migration retry reports

Was this article helpful?

Yes
No
Give feedback about this article

Related Articles

  • Google Drive
  • Connection Pools Using REST API
  • LDAP Account and Group Maps Using REST API

Copyright 2025 – DryvIQ.

Knowledge Base Software powered by Helpjuice

Expand