pixiGetItemDeliveryInfo
pipiGetItemDeliveryInfo
Since pixi version: LOU Official (6.3.0.4452) Additional notes:
Request
POST
https://apigateway.descartes.com/tms/pixi/pixiGetItemDeliveryInfo
Request body
Name | Type | Required | Description |
---|---|---|---|
EAN | string | false | EAN Type: varchar(13) Default value: NULL Example: abc Available from: LOU Official (6.3.0.4452) |
ItemKey | integer | false | ItemKey Type: int Default value: NULL Example: 123 Available from: LOU Official (6.3.0.4452) |
ItemNrInt | string | false | ItemNrInt Type: varchar(50) Default value: NULL Example: abc Available from: LOU Official (6.3.0.4452) |
ItemNrSuppl | string | false | ItemNrSuppl Type: varchar(50) Default value: NULL Example: abc Available from: LOU Official (6.3.0.4452) |
Request Example
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Body xmlns="">
<pixiGetItemDeliveryInfo>
<ItemKey>0</ItemKey>
<EAN>string</EAN>
<ItemNrSuppl>string</ItemNrSuppl>
<ItemNrInt>string</ItemNrInt>
</pixiGetItemDeliveryInfo>
</Body>
</Envelope>
Response
1. Result set
Name | Type | Description |
---|---|---|
SupplNr | string | SupplNr Type: varchar Available from: / (25.7.0.59144) |
SupplierOrderNr | integer | SupplierOrderNr Type: int Available from: / (25.7.0.59144) |
SupplierOrderQty | integer | SupplierOrderQty Type: int Available from: / (25.7.0.59144) |
EstimatedDelivery | string | EstimatedDelivery Type: datetime Available from: / (25.7.0.59144) |
Response Example
<PixiGetItemDeliveryInfoPost200TextXmlResponse>
<SupplierOrderNr>0</SupplierOrderNr>
<SupplNr>string</SupplNr>
<SupplierOrderQty>0</SupplierOrderQty>
<EstimatedDelivery>string</EstimatedDelivery>
</PixiGetItemDeliveryInfoPost200TextXmlResponse>
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:pixiGetItemDeliveryInfo>
<EAN xsi:type="xsd:string">abc</EAN>
<ItemKey xsi:type="xsd:integer">123</ItemKey>
<ItemNrInt xsi:type="xsd:string">abc</ItemNrInt>
<ItemNrSuppl xsi:type="xsd:string">abc</ItemNrSuppl>
</ns1:pixiGetItemDeliveryInfo>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
PHP Example
<?php
getPixiSoapClientResponse('pixiGetItemDeliveryInfo', [
'EAN' => 'abc', // string
'ItemKey' => '123', // integer
'ItemNrInt' => 'abc', // string
'ItemNrSuppl' => 'abc', // 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);
}