Search data change requests
Learn about the search api to search for data change requests.
Here is a summary of the operation, inputs, and outputs:
| Name | Description |
|---|---|
| Input Payload | N/A |
| Output Payload | Data 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 |
| Command | GET {TenantURL}/changeRequests |
| Name | Type | Required | Notes |
|---|---|---|---|
filter | String | Yes |
Enables data change request filtering by a condition. Format for filter query parameter:
Only the following conditions are supported:
Important:
|
max | Integer | No (10) | Positive Integer value to identify the maximum number of data change requests to return in a response |
offset | Integer | No (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"
}
]