espocrm / php-espo-api-client
API client for EspoCRM.
1.0.0
2024-11-25 07:57 UTC
Requires
- php: >=8.0.0
- ext-curl: *
Requires (Dev)
- phpstan/phpstan: ^1.9
- phpunit/phpunit: ^9.5
This package is not auto-updated.
Last update: 2026-02-23 23:19:28 UTC
README
Require with Composer:
composer require espocrm/php-espo-api-client
Usage
use Espo\ApiClient\Client; use Espo\ApiClient\Header; use Espo\ApiClient\Exception\ResponseError; $client = new Client($yourEspoUrl); $client->setApiKey($apiKey); $client->setSecretKey($secretKey); // if you use HMAC method try { $response = $client->request( Client::METHOD_POST, 'Lead', [ 'firstName' => $firstName, 'lastName' => $lastName, 'emailAddress' => $emailAddress, ], [new Header('X-Skip-Duplicate-Check', 'true')] ); $parsedBody = $response->getParsedBody(); } catch (ResponseError $e) { // Error response. $response = $e->getResponse(); $code = $response->getCode(); $body = $response->getBodyPart(); // Consider using some additional library if you need parsed response headers. }
Changelog
1.0.0
- Using new method for constructing X-Hmac-Authorization header #2