StockService :: Depots
The GET method, is used to retrieve data.
The list of parameters is not mandatory to request:
- 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:
?pageNumber=1&rowsPerPage=2
Example:
require (__DIR__ . '/service/WebServices100.php'); use services\WebServices100; $url = 'http://<Your ip>:<Your Port>/WebServices100/<Your environment>/StockService/rest/Depots?pageNumber=1&rowsPerPage=2'; // Send requests to receive data $result = WebServices100::getData($url))); $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 France
[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
[SoucheDocumentVente] => 0
[SoucheDocumentAchat] => 0
[SoucheDocumentInterne] => 0
[Createur] => COLU
[DateModification] => /Date(1441267320000+0200)/
)
[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
[SoucheDocumentVente] => 0
[SoucheDocumentAchat] => 0
[SoucheDocumentInterne] => 0
[Createur] => COLU
[DateModification] => /Date(1240783200000+0200)/
)
)