Hello,
I'm trying to find the best way to retrieve Unmanaged and unverified legal entities out of the DSS REST API On Demand extractions. It seems that through POST /Extractions/ExtractWithNotes, if you stick to
"IdentifierList": { "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.EntityIdentifierList", "EntityIdentifiers": [
it will not use your User Preference settings even though they are set to "Include unmanaged and unverified Legal Entity records in import, search and extractions."
Instead you have to switch to
"IdentifierList": { "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.EntityIdentifierListWithValidationOptions",
and specify
"ValidationOptions": { "AllowDuplicateInstruments": true, "IncludeParentAndUltimateParent": true, "AllowUnmanagedOrUnverifiedEntities": true }, "UseUserPreferencesForValidationOptions": false
Is that a known issue? Am I forgetting anything?
Many thanks in advance for your advice.