pixiCheckPickListNr
Returns actual data about Picklist.
Since pixi version: LOU Official - Update 46 (6.9.46.27927) Additional notes:
Request
POST
https://apigateway.descartes.com/tms/pixi/pixiCheckPickListNr
Request body
Name | Type | Required | Description |
---|---|---|---|
PickListNr | integer | true | PickListNr Type: int Default value: Example: 123 Available from: LOU Official - Update 46 (6.9.46.27927) |
Request Example
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Body xmlns="">
<pixiCheckPickListNr>
<PickListNr>0</PickListNr>
</pixiCheckPickListNr>
</Body>
</Envelope>
Response
1. Result set
Name | Type | Description |
---|---|---|
1SS | boolean | 1SS Type: bit Available from: 25.06 (25.6.0.58802) |
PLHToBox | integer | Box range to Type: int Available from: 25.06 (25.6.0.58802) |
PLHFromBox | integer | Box range from Type: int Available from: 25.06 (25.6.0.58802) |
ReturnValue | integer | 1 = picklist is active, 0 = picklist has expired Type: int Available from: 25.06 (25.6.0.58802) |
NumberOfOrders | integer | Number Of Orders Type: int Available from: 25.06 (25.6.0.58802) |
PicklistNotScannedYet | boolean | Picklist Not Scanned Yet Type: bit Available from: 25.06 (25.6.0.58802) |
Response Example
<PixiCheckPickListNrPost200TextXmlResponse>
<ReturnValue>0</ReturnValue>
<PLHFromBox>0</PLHFromBox>
<PLHToBox>0</PLHToBox>
<_x0031_SS>true</_x0031_SS>
<PicklistNotScannedYet>true</PicklistNotScannedYet>
<NumberOfOrders>0</NumberOfOrders>
</PixiCheckPickListNrPost200TextXmlResponse>
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:pixiCheckPickListNr>
<PickListNr xsi:type="xsd:integer">123</PickListNr> <!-- required -->
</ns1:pixiCheckPickListNr>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
PHP Example
<?php
getPixiSoapClientResponse('pixiCheckPickListNr', [
'PickListNr' => '123', // integer (required)
]);
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);
}