We have list of OrgId of companies recieved from Organisation Hierarcy data API.
requestUrl='https://selectapi.datascope.refinitiv.com/RestApi/v1/Extractions/ExtractRaw'
"@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.LegalEntityHierarchyExtractionRequest"
Now for all the companies recieved from Organisation Hierarcy data, we require corresponding RIC codes.
Could you point us to the API which can provide the relevant data.
Also if you can provide the code snippet(as mentioned below) for API call, it will be very helpful.
- requestUrl = 'https://selectapi.datascope.refinitiv.com/RestApi/v1/Extractions/ExtractRaw'
- requestHeaders = {
- "Prefer": "respond-async",
- "Content-Type": "application/json",
- "Authorization": "token " + token
- }
- requestBody = {
- "ExtractionRequest": {
- "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.LegalEntityHierarchyExtractionRequest",
- "ContentFieldNames": [
- "ID",
- "Legal Entity OrgID",
- "Official Name",
- "Related OrgID",
- "Immediate Parent OrgID",
- "Ultimate Parent OrgID"
- ],
- "IdentifierList": {
- "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.EntityIdentifierList",
- "EntityIdentifiers": [
- {"Identifier": "100421204", "IdentifierType": "OrgId" }
- ]
- },
- "Condition": {
- "DeltaDays": "5"
- }
- }
- }
- r2 = requests.post(requestUrl, json=requestBody, headers=requestHeaders)
- status_code = r2.status_code