Start and stop ingress component
- Last UpdatedFeb 04, 2025
- 1 minute read
- PI System
- Adapter for BACnet 1.2
- Adapters
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 HTTP requests.
-
Run a POST command to the following endpoint, replacing <componentId> with the ingress component that you want to start:
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.