-
Valid values for languageCode?
Hello, How can I know ALL the different valid values for the 'languageCode' field used within the `names`-section, in the response-body of the WC1-`profile` request based on the `referenceId`? A snippet : "languageCode":{"code":"zho","name":"Chinese"} Example response: e_tr_wco_2272404-response-json.txt Our main goal is to…
-
Content Length Header already present
Hi, The url i'm using is: https://api-worldcheck.refinitiv.com/v2/cases/screeningRequest And my header are: Content-Type: application/json Authorization: XXXXXX Content-Length: 255 And the payload is: { "groupId": "5jb6nlmky7ma1fznxdeemjygm", "entityType": "INDIVIDUAL", "caseId": "", "providerTypes": [ "WATCHLIST" ],…
-
In RDP JSON payload, what is "payloadVersion" and where is it documented?
We're using the «News Service on Refinitiv Data Platform - User and Design Guide, v2.0» manual to implement our news-handling service (which obtains news stories via alerts pushed to an AWS SQS queue), and there is a problem with versioning of the format of the responses. By default, if we subscribe for the news alerts…
-
In RDP JSON payload, what is "ecpMessageID"?
We're using «News Service on Refinitiv Data Platform - User and Design Guide, v2.0» to implement our news-handling service which fetches news using AWS SQS. The service subscribes to receive updates of complete news stories (that is, it uses the /news-stories-subscriptions endpoint for subscribing to alerts). We need to…
-
How to retrieve all current legal entity data over the three legal entity tables using python?
I've been trying to access the API through a (pretty bare bones) python script. The problem I am facing at the moment is i can't pass 'not null' in the EntityIdentifierList in the json payload to get data from all Legal entities. I want to call the API with only a record active flag or a current indicator but it wont let…
-
What is the response payload limit from Refinitiv
I am calling Datascope Select API to get a composite template. Can I check what is the response payload limit for each call?
-
JSON format Java EMA API
Hi I am using Java EMA API but the output data is not JSON. I know, Websocket API outputs data in JSON format. Is there any way to output the data in JSON format using Java EMA API? Thanks Dhruv
-
Null Payload in OmmMsg
Hi Team, We are migrating from RFA 7.6 to 8.1. We recently found a scenario in which Payload from OmmMsg was null, causing NullPointerException. Below is the snippet that caused the issue. From which we already verify that event and msg are not null. byte[] data = ommItemEvent.getMsg().getPayload().getBytes() Also this…
-
urgent payload JSON samples request
We are in discussion with a client on WC1 api, and client is requesting some payload JSON samples to have a taste of the file itself. Can you please provide some samples as such? Thank you so much
-
Example to consume Service from CRM
I am new at this. I will integrate this API for blacklists to CRM but first I need to know what is the answer that returns me when consuming the service? Do you have any example please
-
XML Payload over OMM
Hi all. I'm working on an application that will deliver many different types of Market Data (Interest rate curves, EOD prices etc) to interested clients. We'd like to use RFA / OMM. It seems to me that the best method would be publish this data as an XML payload and let the client parse it. Is OMM suitable for this? If so,…
-
DSS REST API - Error 400 malformed request payload
Hello, I'm trying to extract data (End of day, Time Series,...) using the DSS REST API with Python 3.5.2. First, I connect to the DSS server as described in REST API Tutorial 1, without any problem header = {'Prefer': 'respond-async', 'Content-Type': 'application/json; odata.metadata=minimal'} urlGetToken =…
-
How to use a pre-encoded ElementList in a message Payload?
I have entire ElementList pre-encoded in a buffer. How that buffer should be used to populate the list in a message payload? RsslBuffer listBuffer; // a buffer with encoded element list in it, 160 bytes RsslElementList list; rsslClearElementList(&list); list.flags = RSSL_ELF_HAS_STANDARD_DATA; list.encEntries =…
-
Is it possible to create pre-encoded RWF FieldList data?
I am using UPA Java and for ANSI Page payload we could use Msg.encodedDataBody(Buffer encodedDataBody) to encode pre-encoded data, however I am not sure if we can do the same for RWF data (e.g. FieldList)?
-
RWF Error: "Success: Container was decoded from an empty payload."
Hi, I’ve run into an interesting problem decoding an RWF message in UPAJ (v8). The message is a MAP, and when decoding, I get a non-success return error: NO_DATA (16) with the text: Success: Container was decoded from an empty payload. The user should not try to decode any entries My decoder logic is: Map map =…