pixiGetStockMovementOperations
API Call returns stock movement operation name
Since pixi version: LOU Official - Update 46 (6.9.46.27927) Additional notes:
Request
POST
https://apigateway.descartes.com/tms/pixi/pixiGetStockMovementOperations
Request body
Name | Type | Required | Description |
---|---|---|---|
LanguageID | integer | false | Language: 1 - ENG, 2 - GER Type: int Default value: 2 Example: 1 Available from: LOU Official - Update 46 (6.9.46.27927) |
Application | string | false | Application name Type: varchar(100) Default value: Picco Example: abcdef Available from: LOU Official - Update 46 (6.9.46.27927) |
Request Example
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Body xmlns="">
<pixiGetStockMovementOperations>
<LanguageID>0</LanguageID>
<Application>string</Application>
</pixiGetStockMovementOperations>
</Body>
</Envelope>
Response
1. Result set
Name | Type | Description |
---|---|---|
NAME | string | NAME Type: varchar Available from: 25.06 (25.6.0.58802) |
NameId | string | NAME Type: varchar Available from: 25.06 (25.6.0.58802) |
SMOKey | integer | SMOKey Type: int Available from: 25.06 (25.6.0.58802) |
AskInGUI | boolean | AskInGUI Type: bit Available from: 25.06 (25.6.0.58802) |
Editable | boolean | Editable Type: bit Available from: 25.06 (25.6.0.58802) |
App_SMOName | string | App_SMOName Type: varchar Available from: 25.06 (25.6.0.58802) |
Application | string | Application Type: varchar Available from: 25.06 (25.6.0.58802) |
Response Example
<PixiGetStockMovementOperationsPost200TextXmlResponse>
<SMOKey>0</SMOKey>
<Application>string</Application>
<NAME>string</NAME>
<NameId>string</NameId>
<App_SMOName>string</App_SMOName>
<AskInGUI>true</AskInGUI>
<Editable>true</Editable>
</PixiGetStockMovementOperationsPost200TextXmlResponse>
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:pixiGetStockMovementOperations>
<LanguageID xsi:type="xsd:integer">1</LanguageID>
<Application xsi:type="xsd:string">abcdef</Application>
</ns1:pixiGetStockMovementOperations>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
PHP Example
<?php
getPixiSoapClientResponse('pixiGetStockMovementOperations', [
'LanguageID' => '1', // integer
'Application' => 'abcdef', // 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);
}