diff --git a/lib/RetailCrm/Methods/V3/Telephony.php b/lib/RetailCrm/Methods/V3/Telephony.php index 6f72576..5e80a96 100644 --- a/lib/RetailCrm/Methods/V3/Telephony.php +++ b/lib/RetailCrm/Methods/V3/Telephony.php @@ -54,17 +54,17 @@ trait Telephony /** * Call event * - * @param string $phone phone number - * @param string $type call type + * @param string $phone phone number + * @param string $type call type * @param array $codes * @param string $hangupStatus * @param string $externalPhone * @param array $webAnalyticsData + * @param string $site (default: null) * * @return \RetailCrm\Response\ApiResponse * @internal param string $code additional phone code * @internal param string $status call status - * */ public function telephonyCallEvent( $phone, @@ -72,7 +72,8 @@ trait Telephony $codes, $hangupStatus = null, $externalPhone = null, - $webAnalyticsData = [] + $webAnalyticsData = [], + $site = null ) { if (!isset($phone)) { throw new \InvalidArgumentException('Phone number must be set'); @@ -93,27 +94,24 @@ trait Telephony $parameters['callExternalId'] = $externalPhone; $parameters['webAnalyticsData'] = $webAnalyticsData; - /* @noinspection PhpUndefinedMethodInspection */ return $this->client->makeRequest( '/telephony/call/event', "POST", - ['event' => json_encode($parameters)] + ['event' => json_encode($this->fillSite($site, $parameters))] ); } /** * Upload calls * - * @param array $calls calls data + * @param array $calls calls data * - * @throws \InvalidArgumentException - * @throws \RetailCrm\Exception\CurlException - * @throws \RetailCrm\Exception\InvalidJsonException + * @param bool $autoFillSite fill site code from API client in provided calls * * @return \RetailCrm\Response\ApiResponse */ - public function telephonyCallsUpload(array $calls) + public function telephonyCallsUpload(array $calls, $autoFillSite = false) { if (!count($calls)) { throw new \InvalidArgumentException( @@ -121,6 +119,12 @@ trait Telephony ); } + if ($autoFillSite) { + foreach ($calls as $key => $call) { + $calls[$key] = $this->fillSite(null, $call); + } + } + /* @noinspection PhpUndefinedMethodInspection */ return $this->client->makeRequest( '/telephony/calls/upload',