Start and stop ingress component
- Last UpdatedAug 25, 2025
- 1 minute read
To control data ingress, you can start and stop the ingress components of an adapter whenever necessary. By default, all currently configured ingress components are started.
Start an ingress component
Complete the following steps to start an individual ingress component:
-
Use any of the Configuration tools capable of making requests.
-
Run a command to the following endpoint, replacing <componentId> with the ingress component that you want to start:
Definition: The POST method is used to create new resources.
http://localhost:5590/api/v1/administration/<componentId>/Start
Note: 5590 is the default port number. If you selected a different port number, replace it with that value.
Example using Postman:
POST "http://localhost:5590/api/v1/Administration/<ComponentId>/Start"
Stop an ingress component
Complete the following steps to stop an individual ingress component:
-
Start any configuration tool capable of making HTTP requests.
-
Run a POST command to the following endpoint, replacing <componentId> with the ingress component that you want to stop:
http://localhost:5590/api/v1/administration/<componentId>/Stop
Note: 5590 is the default port number. If you selected a different port number, replace it with that value.
Example using Postman:
POST "http://localhost:5590/api/v1/Administration/<componentId>/Stop"
Note: The OmfEgress component cannot be stopped.