Search by

whatspie / php-client

tarikhagustia

Official Whatspie PHP Client

1.0.2 2020-03-12 09:58 UTC

This package is auto-updated.

Last update: 2026-08-13 00:29:20 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();