Closed yannlugrin closed 5 years ago
This PR adds methods related to the conversation routing that can be used like in following examples:
require __DIR__ . '/vendor/autoload.php'; $CrispClient = new Crisp(); $CrispClient->authenticate(identifier, key); $routing = $CrispClient->websiteConversations->getRouting($websiteId, $sessionId);
require __DIR__ . '/vendor/autoload.php'; $CrispClient = new Crisp(); $CrispClient->authenticate(identifier, key); $params = [ 'assigned' => [ 'user_id' => $userId, ] ]; $routing = $CrispClient->websiteConversations->assignRouting($websiteId, $sessionId, $params);
Perfect, thanks :)
This PR adds methods related to the conversation routing that can be used like in following examples: