Search Tagged Source Entities
Search over a customer's sources
{
"cursor": "string",
"limit": 100,
"query": [
{
"key": "string",
"value": "string",
"values": [
"string"
],
"matchingMethod": "string",
"negated": false,
"start": 0,
"end": 0
}
],
"sortSourcesAscending": false,
"includeObsolete": false
}
The id (exclusive) from which search results resume returning. Users should supply an entity 'id' to this property. Its main purpose is to resume where a previous search left off because of the 'limit' parameter. If a user supplies the last id in a set of results to cursor, while keeping the query the same, the system will return the next page of results
The number of results to return. Default: 100
Whether to sort source results ascending lexigraphically by id/sourceName. Default: true
Whether to fetch obsolete sources. Default: false
successful operation
{
"status": {
"result": "string",
"message": "string",
"code": 0
},
"response": {
"items": [
{
"hidden": false,
"id": "string",
"description": "string",
"createdEpochMillis": 0,
"updatedEpochMillis": 0,
"markedNewEpochMillis": 0,
"creatorId": "string",
"updaterId": "string",
"sourceName": "string"
}
],
"offset": 0,
"limit": 0,
"cursor": "string",
"totalItems": 0,
"moreItems": false,
"sort": {
"ascending": false,
"field": "string",
"default": false
}
}
}