Accelerate the Value of Data

Validate Tasks Using a Filter

This operation validates tasks in the background using a filter.

Request

Operation Endpoint:

POST {tenantId}/tasks/_validate
Table 1. Parameters
Name Required Details
Name Required Details
Headers Authorization Yes Access Token in format "Bearer <accessToken>" (see details in Authentication API).
Content-Type Yes Should be "Content-Type: application/json".
EnvironmentURL Yes Reltio Environment URL.
Body objectURIs No List of Reltio objectURIs (entity/relation).
assignee No Task assignee.
createdBy No Task owner.
processInstanceID No Process instance ID.
processType No Process instance type.
taskType No Task type.
createdBefore No Time in milliseconds.
createdAfter No Time in milliseconds.
suspended No Suspended: true or false.
priorityClass No
Priority class = ['Urgent', 'High', 'Medium', 'Low']stringEnum:"Urgent", "High", "Medium", "Low"
orderBy No
Sort criteria = ['createTime', 'assignee', 'dueDate', 'priority']stringEnum:"createTime", "assignee", "dueDate", "priority"
ascending No Used in combination with orderBy.
offset No Start position.
max No Number of records to be returned.
state No Validation state of a task; default value=valid. Possible values: valid, invalid, all.
Path tenantId Yes Tenant ID.

Example:

Sample Request JSON:

{
    "createdBy" : "user1",
    "processType" : "dataChangeRequestReview"
}

Response

Response Structure:

  • error :returned if an error is encountered, contains details of the issue:
    • errorCode: 5-digit error code
    • errorMessage: error message
    • errorData :details of the error:
      • exception :exception message
      • stack :stack trace
    • innerError :details of the error from Reltio API:
      • errorMessage :Reltio API error message
      • errorCode :Reltio API error code
      • innerErrorData :Reltio API inner error data
  • warning :returned if the operation is completed with some minor issues
  • status :result of the operation; possible values are "OK" or "failed"

Example:

Sample Response JSON:{ "status": "OK", "warning": "string"}