POST /system/open-adr/server
FROM API REVISION 6.0
If this parameter is not in the request, the Application/Json will be chosen by default.
There are multiple possible values (according the resource):
The first two are the most often used.
There are multiple possible values according the resource:
If this parameter is not present during the request, and error 415 Unsupported Media Type will be thrown.
The Content-Length entity-header field indicates the size of the entity-body.
Object Name: Server
Property Name | Type | Description | Method |
---|---|---|---|
HostnameVerificationEnabled | Boolean | A host name verifier ensures the host name in the URL to which the client connects matches the host name in the digital certificate that the server sends back as part of the SSL connection. | GET POST |
UseSslTls | Boolean | True if secure connection, false otherwise. | GET POST |
VtnUrl | String | This is the server address. | GET POST |
Certificates | Array<Certificate> | This will list the Certificate mode available. Public or Private . |
GET |
URL Example: https://0.0.0.0/api/rest/v1/system/open-adr/server
{
"hostnameVerificationEnabled": false,
"vtnUrl": "http://ServerAddress",
"useSslTls": false
}
URL Example: https://0.0.0.0/api/rest/v1/system/open-adr/server
<?xml version="1.0" encoding="utf-8"?>
<Server>
<HostnameVerificationEnabled>false</HostnameVerificationEnabled>
<UseSslTls>false</UseSslTls>
<VtnUrl>http://ServerAddress</VtnUrl>
</Server>