pixiReportItemsWithMissingCustomsInfo
Get all items that dont have customs info yet
Since pixi version: LOU Official (6.3.0.4452) Additional notes:
Request
Request body
Name | Type | Required | Description |
---|---|---|---|
Rowcount | integer | false | Rowcount Type: int Default value: 1000 Example: Available from: LOU Official - Update 46 (6.9.46.27927) |
ItemKeyStart | integer | false | ItemKeyStart Type: int Default value: 0 Example: Available from: LOU Official - Update 46 (6.9.46.27927) |
Request Example
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Body xmlns="">
<pixiReportItemsWithMissingCustomsInfo>
<Rowcount>0</Rowcount>
<ItemKeyStart>0</ItemKeyStart>
</pixiReportItemsWithMissingCustomsInfo>
</Body>
</Envelope>
Response
1. Return status
Name | Type | Description |
---|---|---|
ABC | string | ABC tags connected to the item Type: varchar Available from: 25.06 (25.6.0.58802) |
Width | number | Width Type: numeric Available from: 25.06 (25.6.0.58802) |
EANUPC | string | EANUPC Type: varchar Available from: 25.06 (25.6.0.58802) |
Heigth | number | Heigth Type: numeric Available from: 25.06 (25.6.0.58802) |
Length | number | Length Type: numeric Available from: 25.06 (25.6.0.58802) |
Weight | number | Weight Type: numeric Available from: 25.06 (25.6.0.58802) |
Enabled | boolean | Enabled Type: bit Available from: 25.06 (25.6.0.58802) |
ItemKey | integer | Item Id Type: int Available from: 25.06 (25.6.0.58802) |
PriceVK | number | Item price Type: money Available from: 25.06 (25.6.0.58802) |
SupplNr | string | SupplNr Type: varchar Available from: 25.06 (25.6.0.58802) |
ItemName | string | Item name Type: varchar Available from: 25.06 (25.6.0.58802) |
ItemTAGs | string | Tags connected to the item Type: varchar Available from: 25.06 (25.6.0.58802) |
VATLevel | string | VAT level (L - Low, H - High, 0 -Zero) Type: varchar Available from: 25.06 (25.6.0.58802) |
ItemNrInt | string | ItemNrInt Type: varchar Available from: 25.06 (25.6.0.58802) |
ItemNrSuppl | string | ItemNrSuppl Type: varchar Available from: 25.06 (25.6.0.58802) |
CustomsTariffText | string | Customs Tariff Text Type: varchar Available from: 25.06 (25.6.0.58802) |
CustomsTariffNumber | string | Customs Tariff Number Type: varchar Available from: 25.06 (25.6.0.58802) |
CustomsCountryOfOrigin | string | Customs Country Of Origin Type: varchar Available from: 25.06 (25.6.0.58802) |
CustomsPreviousProcess | string | Customs Previous Process Type: varchar Available from: 25.06 (25.6.0.58802) |
CustomsCountryOfOriginISO2 | string | Customs Country Of Origin ISO2 Type: char Available from: 25.06 (25.6.0.58802) |
Response Example
<PixiReportItemsWithMissingCustomsInfoPost200TextXmlResponse>
<ItemKey>0</ItemKey>
<ItemName>string</ItemName>
<SupplNr>string</SupplNr>
<ItemNrInt>string</ItemNrInt>
<EANUPC>string</EANUPC>
<ItemNrSuppl>string</ItemNrSuppl>
<PriceVK>0</PriceVK>
<VATLevel>string</VATLevel>
<Enabled>true</Enabled>
<ItemTAGs>string</ItemTAGs>
<Weight>0</Weight>
<Heigth>0</Heigth>
<Width>0</Width>
<Length>0</Length>
<ABC>string</ABC>
<CustomsTariffNumber>string</CustomsTariffNumber>
<CustomsCountryOfOrigin>string</CustomsCountryOfOrigin>
<CustomsCountryOfOriginISO2>string</CustomsCountryOfOriginISO2>
<CustomsTariffText>string</CustomsTariffText>
<CustomsPreviousProcess>string</CustomsPreviousProcess>
</PixiReportItemsWithMissingCustomsInfoPost200TextXmlResponse>
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:pixiReportItemsWithMissingCustomsInfo>
<Rowcount xsi:type="xsd:integer"></Rowcount>
<ItemKeyStart xsi:type="xsd:integer"></ItemKeyStart>
</ns1:pixiReportItemsWithMissingCustomsInfo>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
PHP Example
<?php
getPixiSoapClientResponse('pixiReportItemsWithMissingCustomsInfo', [
'Rowcount' => '', // integer
'ItemKeyStart' => '', // integer
]);
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);
}