Skip to main content
The request results in a DLC Response, returned by the DataLoadControllerService after performing the requested Operation.

REST

REST requests can be submitted to DataLoadControllerService via the /connectors/rest/dlc/v2/execute endpoint.
{
  "operation": "LOAD",
  "topics": [ "trades" ]
}
Java
Java requests can be submitted to DataLoadControllerService via the execute method.
DlcLoadRequest request = DlcLoadRequest.builder()
    .topics("trades")
    .build();