PHP code example of jlorente / stethome-php-sdk

1. Go to this page and download the library: Download jlorente/stethome-php-sdk library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

jlorente / stethome-php-sdk example snippets


$stethome = new \Jlorente\StethoMe\StethoMe($secretVendorToken);
$stethome->pulmonary()->getVisit($visitId);

$stethome->security()->getToken();

$stethome->security()->postToken($params);

$stethome->pulmonary()->deleteVisit($visitId);

$stethome->pulmonary()->getVisit($visitId);

$stethome->pulmonary()->getPoint($visitId, $point);

$stethome->pulmonary()->getPointTags($visitId, $point);

$stethome->pulmonary()->getPointWav($visitId, $point);

$stethome->pulmonary()->getVisitId();

$stethome->pulmonary()->postVisitContent($visitId, array $parameters = []);

$stethome->pulmonary()->copyVisit($visitId);

$stethome->pulmonary()->lockVisit($visitId);
bash
$ php composer.phar 
json
...
    "rente/stethome-php-sdk": "*"
    }