1
0
mirror of synced 2024-11-21 21:06:07 +03:00
api-client-php/README.md

46 lines
941 B
Markdown
Raw Normal View History

PHP client for retailCRM API
2013-07-04 10:18:28 +04:00
=================
2013-07-02 12:37:54 +04:00
PHP client for [retailCRM API](http://www.retailcrm.ru/docs/Разработчики/Разработчики#api).
2013-07-03 18:13:25 +04:00
2013-07-04 12:44:41 +04:00
Requirements
------------
2013-07-03 18:13:25 +04:00
2013-10-08 11:19:50 +04:00
* PHP version 5.3 and above
2013-07-03 18:13:25 +04:00
* PHP-extension CURL
2013-07-04 12:44:41 +04:00
Installation
------------
2014-04-21 14:56:52 +04:00
1) Install [composer](https://getcomposer.org/download/) into the project directory.
2013-07-04 12:44:41 +04:00
2) Run:
```bash
composer require retailcrm/api-client-php 3.0
2013-10-08 11:19:38 +04:00
```
2014-11-06 02:55:09 +03:00
Usage
-----
Example of the usage:
```php
$client = new \RetailCrm\ApiClient(
'https://demo.intarocrm.ru',
'T9DMPvuNt7FQJMszHUdG8Fkt6xHsqngH'
);
try {
$response = $client->ordersGet('M-2342');
} catch (\RetailCrm\Exception\CurlException $e) {
echo "CRM connection error: " . $e->getMessage();
}
if ($response->isSuccessful()) {
echo $response->order['totalSumm'];
// or $response['order']['totalSumm'];
// or
// $order = $response->getOrder();
// $order['totalSumm'];
}
```