Configure data endpoints
- Last UpdatedJan 12, 2026
- 1 minute read
Adapters can egress data to one or more data endpoints simultaneously. While it depends on the use case, customers can configure a single adapter to send to egress data to multiple PI Servers, a PI Server and CONNECT data services, or to multiple CONNECT data services namespaces.
Postman
To configure the data endpoints using Postman:
-
To initialize the configuration, use the PUT method in conjunction with the http://localhost:5590/api/v1/configuration/omfegress/dataendpoints REST endpoint.
Note: If you installed the adapter to listen on a non-default port, update 5590 to the port number in use.
-
Copy and paste an example configuration for data endpoints into the Body section.
For sample JSONs, see the Examples section.
-
Update the example JSON parameters for your environment.
-
Select Send to push the configuration to the adapter.
For a list of other REST operations you can perform, like updating or deleting a data source configuration, see the REST URLs section below.
After data source configuration is complete, you must configure data selection to define the streams to collect from the data source.
Special characters encoding
The adapter encodes special characters used in the data selection StreamId parameter string before sending it to configured endpoints. The encoded characters look as follows:
|
Special character |
Encoded character |
|---|---|
|
* |
%2a |
|
' |
%27 |
|
` |
%60 |
|
" |
%22 |
|
? |
%3f |
|
; |
%3b |
|
| |
%7c |
|
\ |
%5c |
|
{ |
%7b |
|
} |
%7d |
|
[ |
%5b |
|
] |
%5d |