Validate Tasks Using a Filter
This operation validates tasks in the background using a filter.
Request
Operation Endpoint:
POST {tenantId}/tasks/_validate| 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 |
| |
orderBy | No |
| |
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. | |
objectFilter | No | A search filter expression that lets you retrieve only workflow tasks linked to entities that match the criteria. Note: This parameter is appended to the system-generated filters that select open workflow tasks. Only tasks associated with currently existing entities are included. For more information, see topic Filter workflow tasks using entity attributes. | |
| 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 codeerrorMessage: error messageerrorData:details of the error:exception:exception messagestack:stack trace
innerError:details of the error from Reltio API:errorMessage:Reltio API error messageerrorCode:Reltio API error codeinnerErrorData:Reltio API inner error data
warning:returned if the operation is completed with some minor issuesstatus:result of the operation; possible values are "OK" or "failed"
Example:
Sample Response JSON:{ "status": "OK", "warning": "string"}