StockService :: GetDepot
The POST method, is used to retrieve data.
The list of parameters is not mandatory to request:
- int idDepot
Returns data as JSON, for use in PHP, you need to convert JSON in StdClass PHP (PHP function: json_decode ()).
Input parameters:
{"idDepot":1}
Example:
require (__DIR__ . '/service/WebServices100.php'); use services\WebServices100; // add parameters $data = new stdClass(); $data->idDepot = 1; $json_data = json_encode($data); $url = 'http://<Your ip>:<Your Port>/WebServices100/<Your environment>/StockService/rest/GetDepot'; // Send requests to receive data $result = WebServices100::getData($url, $json_data); $response= json_decode($result);
Result:
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
)