pixiInfoSettingsHist
Enabled but undocumented
Get history of database Settings
Since pixi version: LOU Official - Update 46 (6.9.46.27927) Additional notes:
Request
Request body
Name | Type | Required | Description |
---|---|---|---|
Rows | integer | false | Number of rows in result set Type: int Default value: 0 Example: 100 Available from: LOU Official - Update 46 (6.9.46.27927) |
ToDate | string | false | To date Type: datetime Default value: NULL Example: 31.12.2022 Available from: LOU Official - Update 46 (6.9.46.27927) |
FromDate | string | false | From date Type: datetime Default value: NULL Example: 31.12.2022 Available from: LOU Official - Update 46 (6.9.46.27927) |
Request Example
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Body xmlns="">
<pixiInfoSettingsHist>
<FromDate>string</FromDate>
<ToDate>string</ToDate>
<Rows>0</Rows>
</pixiInfoSettingsHist>
</Body>
</Envelope>
Response
1. Result set
Name | Type | Description |
---|---|---|
CreateEmp | string | CreateEmp Type: varchar Available from: 25.06 (25.6.0.58802) |
HistRemark | string | HistRemark Type: varchar Available from: 25.06 (25.6.0.58802) |
UpdateDate | string | UpdateDate Type: datetime Available from: 25.06 (25.6.0.58802) |
SettingName | string | SettingName Type: varchar Available from: 25.06 (25.6.0.58802) |
NewSettingValue | string | NewSettingValue Type: varchar Available from: 25.06 (25.6.0.58802) |
OldSettingValue | string | OldSettingValue Type: varchar Available from: 25.06 (25.6.0.58802) |
Response Example
<PixiInfoSettingsHistPost200TextXmlResponse>
<SettingName>string</SettingName>
<OldSettingValue>string</OldSettingValue>
<NewSettingValue>string</NewSettingValue>
<UpdateDate>string</UpdateDate>
<CreateEmp>string</CreateEmp>
<HistRemark>string</HistRemark>
</PixiInfoSettingsHistPost200TextXmlResponse>
HTTP Example
POST https://apigateway.descartes.com/tms/pixi/
Content-Type: text/xml; charset=utf-8
# echo -n '{{username}}:{{password}}' | base64 | pbcopy
Authorization: Basic {{token}}
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns1="https://apigateway.descartes.com/tms/pixi/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<ns1:pixiInfoSettingsHist>
<Rows xsi:type="xsd:integer">100</Rows>
<ToDate xsi:type="xsd:string">31.12.2022</ToDate>
<FromDate xsi:type="xsd:string">31.12.2022</FromDate>
</ns1:pixiInfoSettingsHist>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
PHP Example
<?php
getPixiSoapClientResponse('pixiInfoSettingsHist', [
'Rows' => '100', // integer
'ToDate' => '31.12.2022', // string
'FromDate' => '31.12.2022', // string
]);
function getPixiSoapClientResponse(string $method, array $arguments = [])
{
$soapArguments = [];
foreach ($arguments as $key => $value) {
$soapArguments[] = new SoapVar($value, null, '', '', $key);
}
$soapClient = new SoapClient(null, [
'login' => '...',
'password' => '...',
'uri' => 'https://apigateway.descartes.com/tms/pixi/',
'location' => 'https://apigateway.descartes.com/tms/pixi/',
]);
return $soapClient->__call($method, $soapArguments);
}