We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
class Client
Client object is used to establish connection to the Cardinity API. It is required for executing any method.
<?php use Cardinity\Client; use Cardinity\Exception; $client = Client::create([ 'consumerKey' => 'YOUR_CONSUMER_KEY', 'consumerSecret' => 'YOUR_CONSUMER_SECRET', ]);