Stop the Change Data Capture Process

Topics:

Use the following REST call to start the CDC process with an optional interval.

GET: /server/api/v1/server/cdc/stop

Topics:

Stop the CDC process.

Example:

GET https://localhost:9514/server/api/v1/server/cdc/stop

-- response --

200 OK
Server:  Apache-Coyote/1.1
X-Application-Context:  application:9500
Content-Type:  application/xml;charset=UTF-8
Transfer-Encoding:  chunked
Date:  Tue, 08	May 2018 13:44:53 GMT

<RestResponse>
  <status>0</status>
  <statusText/>
  <responseType>
    com.ibi.omnigen.controller.cdc.NotificationServiceStatus
  </responseType>
  <response>
    <NotificationServiceStatus>
      <status>Stopped</status>
      <configurationValid>true</configurationValid>
      <serviceName>cdc</serviceName>
      <lastRun>2018-05-08</lastRun>
      <pollInterval>5</pollInterval>
    </NotificationServiceStatus>
  </response>
</RestResponse>