whatspie/php-client

Official Whatspie PHP Client

1.0.2 2020-03-12 09:58 UTC

This package is auto-updated.

Last update: 2024-04-12 19:23:58 UTC


README

CircleCI

Installation

composer require whatspie\php-client

Usage

To get API_KEY goto Profile page on Whatspie Dashboard

$client = new \Whatspie\Client('YOUR_API_KEY', 'YOUR DEVICE');

// Sending Message
$client->to('628561112233')->message('Hi there!')->send();

// Get Messages
$client->getMessages();