Unify and manage your data

Search data change requests

Learn about the search api to search for data change requests.

To search for data change requests (DCR) use this operation which returns the DCRs that matches the input filter. Below is an example of a search and in another topic the API operation specification.

Here is a summary of the operation, inputs, and outputs:

NameDescription
Input PayloadN/A
Output PayloadData change request objects from a tenant matching the filter request (List<Map<String, Object>>)
Data Sense

Dynamically build Output structures at design time

Map response JSON to object list

CommandGET {TenantURL}/changeRequests
Table 1. Parameters
NameTypeRequiredNotes
filterStringYes

Enables data change request filtering by a condition. Format for filter query parameter:

filter=({Condition Type}[AND/OR {Condition Type}]*)

Only the following conditions are supported:

  • equals(property, 'value')- exact match condition
  • in(property,'value1,value2...')- returns data change requests which have property value contained in the specified values list
  • Search by the following properties is supported:
  • createdBy
  • objectURI
Important:
  • Search is case sensitive.
  • Empty filter is not allowed.
maxIntegerNo (10)Positive Integer value to identify the maximum number of data change requests to return in a response
offsetIntegerNo (0)Positive Integer value to identify the starting element in a result set to be returned in a response

Sample Request

https://sndbx.reltio.com/reltio/api/pdxkfQZEfYhHTup/changeRequests?filter=
      in(createdBy,'snevar@infoviewsystems.com')

Sample Response

{  
   "URI":"changeRequests/1CKH1WCi",
   "createdBy":"snevar@infoviewsystems.com",
   "createdTime":1483968328390,
   "updatedBy":"snevar@infoviewsystems.com",
   "updatedTime":1483968328390,
   "type":"configuration/changeRequestTypes/default",
   "state":"AWAITING_REVIEW"
},
{  
   "URI":"changeRequests/1JOqzlHf",
   "createdBy":"snevar@infoviewsystems.com",
   "createdTime":1483968328210,
   "updatedBy":"snevar@infoviewsystems.com",
   "updatedTime":1483968328210,
   "type":"configuration/changeRequestTypes/default",
   "state":"AWAITING_REVIEW"
},
{  
   "URI":"changeRequests/1CKH1JPw",
   "createdBy":"snevar@infoviewsystems.com",
   "createdTime":1483968328030,
   "updatedBy":"snevar@infoviewsystems.com",
   "updatedTime":1483968328030,
   "type":"configuration/changeRequestTypes/default",
   "state":"AWAITING_REVIEW"
},
{  
   "URI":"changeRequests/1CKH16dA",
   "createdBy":"snevar@infoviewsystems.com",
   "createdTime":1483968327838,
   "updatedBy":"snevar@infoviewsystems.com",
   "updatedTime":1483968327838,
   "type":"configuration/changeRequestTypes/default",
   "state":"AWAITING_REVIEW"
},
{  
   "URI":"changeRequests/1JOqzYUt",
   "createdBy":"snevar@infoviewsystems.com",
   "createdTime":1483968327664,
   "updatedBy":"snevar@infoviewsystems.com",
   "updatedTime":1483968327664,
   "type":"configuration/changeRequestTypes/default",
   "state":"AWAITING_REVIEW"
},
{  
   "URI":"changeRequests/1CKH0tqO",
   "createdBy":"snevar@infoviewsystems.com",
   "createdTime":1483968327469,
   "updatedBy":"snevar@infoviewsystems.com",
   "updatedTime":1483968327469,
   "type":"configuration/changeRequestTypes/default",
   "state":"AWAITING_REVIEW"
},
{  
   "URI":"changeRequests/1JOqzLi7",
   "createdBy":"snevar@infoviewsystems.com",
   "createdTime":1483968327260,
   "updatedBy":"snevar@infoviewsystems.com",
   "updatedTime":1483968327260,
   "type":"configuration/changeRequestTypes/default",
   "state":"AWAITING_REVIEW"
},
{  
   "URI":"changeRequests/1JOqz8vL",
   "createdBy":"snevar@infoviewsystems.com",
   "createdTime":1483968327072,
   "updatedBy":"snevar@infoviewsystems.com",
   "updatedTime":1483968327072,
   "type":"configuration/changeRequestTypes/default",
   "state":"AWAITING_REVIEW"
},
{  
   "URI":"changeRequests/1CKH0h3c",
   "createdBy":"snevar@infoviewsystems.com",
   "createdTime":1483968326870,
   "updatedBy":"snevar@infoviewsystems.com",
   "updatedTime":1483968326870,
   "type":"configuration/changeRequestTypes/default",
   "state":"AWAITING_REVIEW"
},
{  
   "URI":"changeRequests/1JOqyw8Z",
   "createdBy":"snevar@infoviewsystems.com",
   "createdTime":1483968326694,
   "updatedBy":"snevar@infoviewsystems.com",
   "updatedTime":1483968326694,
   "type":"configuration/changeRequestTypes/default",
   "state":"AWAITING_REVIEW"
}
]