/getposlist
This function allows you to get your points of sale list.
- Endpoint: https://app.fideljet.com/rest/getposlist
- Type: Post
- Var: apikey
Here is a PHP example:
<?php $apikey = "YOUR_API_KEY"; // APi Key https://app.Fideljet.com/profil then apikey section $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => "https://app.fideljet.com/rest/getposlist", CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 30, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => "POST", CURLOPT_POSTFIELDS => "{ \"apikey\":\"$apikey\" }", CURLOPT_HTTPHEADER => array( "accept: application/json", "content-type: application/json" ), )); $response = curl_exec($curl); $err = curl_error($curl); curl_close($curl); if ($err) { echo "cURL Error #:" . $err; } else { echo $response; } ?>
Résultat:
{ "message":"Success", "success":true, "data":{ "poslist":[ {"pos": { "id":"42", "name":"Name pos", "login":"VK90GV", "address":"pos address" } } ] } }