Skip to main content

Entity Data – Added

Added optional param to omit entity name from properties and add Entity Name to response in query endpoint to search entities by entity IDs:

  • POST /entitydataquery/api/v2/entity/search/by-ids

Request body:

{
"EntityIds": ["00000000-0000-0000-0000-000000000000", "00000000-0000-0000-0000-000000000000"],
"Pager": {
"Size": 10,
"From": 0,
"SortBy": "legalEntityName.keyword",
"SortOrder": 0
},
"PropertyNames": ["legalEntityName", "registrationNumber", "status"],
"OmitNameFieldsFromProps": false
}