StockService :: GetListDepot
The POST method, is used to retrieve data.
The list of parameters is not mandatory to request:
- Criteria criteria,
- array orders,
- int pageNumber,
- int rowsPerPage.
Returns data as JSON, for use in PHP, you need to convert JSON in StdClass PHP (PHP function: json_decode ()).
Input parameters:
Criteria
{"criteria":
{
"__type":"CriteriaLogical:http://www.proconsult.lu/WebServices100",
"Operand1":
{
"__type":"CriteriaComparison:http://www.proconsult.lu/WebServices100",
"FieldName": "Pays",
"Operator": "0",
"Value": "France"
},
"Operator":0
}
}
- orders
{"orders":[{"Id":"Asc"}]}- pageNumber
{pageNumber: 1}- rowsPerPage
{rowsPerPage: 10}
Example:
require (__DIR__ . '/service/Criteria.php'); use services\WebServices100; // add parameters $data = new stdClass(); $data->criteria = null; $json_data = json_encode($data); $url = 'http://<Your ip>:<Your Port>/WebServices100/<Your environment>/StockService/rest/GetListDepot'; // Send requests to receive data $result = WebServices100::getData($url, $json_data); $response= json_decode($result);
Result:
Array
(
[0] => stdClass Object
(
[Id] => 1
[Intitule] => Bijou SA
[Code] => 01
[Adresse] => 70, rue des orfèvres
[Complement] =>
[CodePostal] => 75009
[Ville] => Paris
[Region] => Ile de Fr
[Pays] => France
[Contact] => Mr Dazur
[Email] => Bijou.Paris@BijouSA.com
[Telephone] => 01 46 76 85 21
[Fax] => 01 46 85 21 20
[EstPrincipal] => 1
[IdEmplacementDefaut] => 1
[IdCategorieComptable] => 1
)
[1] => stdClass Object
(
[Id] => 2
[Intitule] => Annexe Bijou SA
[Code] => 02
[Adresse] => 115, rue du Temple
[Complement] =>
[CodePostal] => 75009
[Ville] => Paris
[Region] =>
[Pays] => France
[Contact] => Mr Lebon
[Email] =>
[Telephone] => 01 46 25 21 20
[Fax] => 01 46 25 21 17
[EstPrincipal] =>
[IdEmplacementDefaut] => 73
[IdCategorieComptable] => 1
)
)