Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

To allow us to deliver data, we ask that you provide an HTTP endpoint that exposes the following interface:

Code Block
languagec#
interface ITradingPlatform
{

...

   
	void   ProcessMessage(string messageXml);

...

   
	void   Heartbeat();
} 

Jira Legacy
showSummaryfalse
serverJIRA (geniussports.atlassian.net)
serverId03180ea7-16c3-3c7d-a258-d6088d6b5ada
keyBGI-103

We will then develop a Connector to plug-in to a per-client deployment of our Integration Service to communicate with this endpoint. This enables us to provide bespoke messaging and security provision that precisely meets your requirements. We then POST XML over HTTP secured with SSL/TLS (HTTPS).
The two methods we require are:

...