Update Configuration for given ID
- Last Updated: September 5, 2025
- 1 minute read
- Hybrid Data Pipeline
- Version 5.0
- Documentation
Purpose
Updates a system configuration setting.
URL
https://<myserver>:<port>/api/admin/configurations/{id}
Method
PUT
URL Parameters
<myserver> is the hostname or IP address of the machine hosting the Hybrid Data Pipeline server for a non-load balancer deployment, or the machine hosting the load balancer for a load balancer deployment. For a non-load balancer deployment, <port> is the port number specified as the Server Access Port during deployment. For a load balancer deployment, <port> must be either 80 for http or 443 for https. Whenever port 80 or 443 are used, it is not necessary to include the port number in the URL.
The URL parameter "id" described in the following table is required.
| Property | Description | Valid Values |
|---|---|---|
| "id" | The ID of the configurations attribute being returned. | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8
|
Request Definition
{
"value": attribute_value
}
| Property | Description | Valid Values |
|---|---|---|
| "value" | The value of the configurations attribute. | Valid values vary depending on the attribute. For an authentication delimiter ( For
secureChangePassword ( For default OData version for new data sources ( For default entity mode for
OData V4 sources ( For the JDBC data store
feature ( For password
policy ( 7), valid values are 0 - no
persistence, 1 - log, 2 - database, 3 - log and database. The
default value is 1. For IP whitelist
filtering ( |
Sample Request Payload
The following PUT operation sets the external authentication
delimiter to the bar symbol (|).
PUT https://MyServer:8443/api/admin/configurations/1
{
"value": "|"
}
Sample Server Failure Response
{
"error": {
"code": 222206007,
"message": {
"lang": "en-US",
"value": "Invalid user ID or password."
}
}
}
Authentication
Basic Authentication using Login ID and Password.
Authorization
The user must have the Administrator (12) or the Configurations (22) permission.