TeknooSoftware / sellsy-client

PHP library to connect your applications to your Sellsy account account using the Sellsy API and build your websites and your platforms on the Sellsy technology.
https://teknoo.software/libraries/sellsy
MIT License
17 stars 16 forks source link

how can i update cataloge or get list of catalouge no proper doc !! #20

Closed pratikraman-dev closed 4 years ago

frenchcomp commented 4 years ago

Hi @pratt1305 This library is independant of Sellsy company and is only a client, developed for free on my weeks ends !

Requests follows the Sellsy API, by example in the README File, in the current stable version (2.x branch), to call the Sellsy's method "Infos.getInfos" :

$result = $sellsy->Infos()->getInfos()->getResponse();
echo $result['consumerdatas']['id'];

To pass a parameter, by example to "Accountdatas.createTaxe"

$sellsy->Accountdatas()->createTaxe(['taxe' => array(
            'name'      => {{name}},
            'value'     => {{taxe_value}},
            'isEnabled' => {{taxe_enabled}}
        )]);