The SMS Works provides a low-cost, reliable SMS API for developers. Pay only for delivered texts, all failed UK messages are refunded.
For more information, please visit https://thesmsworks.co.uk/contact.
PHP 7.4 and later. Should also work with PHP 8.0.
To install the bindings via Composer, add the following to composer.json
:
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/GIT_USER_ID/GIT_REPO_ID.git"
}
],
"require": {
"GIT_USER_ID/GIT_REPO_ID": "*@dev"
}
}
Then run composer install
Download the files and include autoload.php
:
<?php
require_once('/path/to/OpenAPIClient-php/vendor/autoload.php');
Please follow the installation procedure and then run the following:
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: JWT
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
$apiInstance = new OpenAPI\Client\Api\BatchMessagesApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$messages = array('key' => new \stdClass); // object | An array of messages
try {
$result = $apiInstance->batchAnyPost($messages);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling BatchMessagesApi->batchAnyPost: ', $e->getMessage(), PHP_EOL;
}
All URIs are relative to https://api.thesmsworks.co.uk/v1
Class | Method | HTTP request | Description |
---|---|---|---|
BatchMessagesApi | batchAnyPost | POST /batch/any | |
BatchMessagesApi | batchBatchidGet | GET /batch/{batchid} | |
BatchMessagesApi | batchSchedulePost | POST /batch/schedule | |
BatchMessagesApi | batchSendPost | POST /batch/send | |
BatchMessagesApi | batchesScheduleBatchidDelete | DELETE /batches/schedule/{batchid} | |
CreditsApi | creditsBalanceGet | GET /credits/balance | |
MessagesApi | messageSchedulePost | POST /message/schedule | |
MessagesApi | messageSendPost | POST /message/send | |
MessagesApi | messagesFailedPost | POST /messages/failed | |
MessagesApi | messagesInboxPost | POST /messages/inbox | |
MessagesApi | messagesMessageidDelete | DELETE /messages/{messageid} | |
MessagesApi | messagesMessageidGet | GET /messages/{messageid} | |
MessagesApi | messagesPost | POST /messages | |
MessagesApi | messagesScheduleGet | GET /messages/schedule | |
MessagesApi | messagesScheduleMessageidDelete | DELETE /messages/schedule/{messageid} | |
MessagesApi | sendFlashMessage | POST /message/flash | |
OneTimePasswordApi | otpMessageidGet | GET /otp/{messageid} | |
OneTimePasswordApi | otpSendPost | POST /otp/send | |
OneTimePasswordApi | otpVerifyPost | POST /otp/verify | |
UtilsApi | utilsErrorsErrorcodeGet | GET /utils/errors/{errorcode} | |
UtilsApi | utilsTestGet | GET /utils/test |
- BatchMessage
- BatchMessageResponse
- CancelledMessageResponse
- CreditsResponse
- DeletedMessageResponse
- ErrorModel
- ExtendedErrorModel
- Message
- MessageMetadata
- MessageResponse
- MessageResponseFailurereason
- MetaData
- OTP
- OTPResponse
- OTPVerify
- OTPVerifyResponse
- Query
- QueryMetadata
- ScheduledBatchResponse
- ScheduledMessage
- ScheduledMessageResponse
- ScheduledMessagesResponse
- ScheduledMessagesResponseMessage
- SendMessageResponse
- TestResponse
Authentication schemes defined for the API:
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header
To run the tests, use:
composer install
vendor/bin/phpunit
This PHP package is automatically generated by the OpenAPI Generator project:
- API version:
1.9.0
- Build package:
org.openapitools.codegen.languages.PhpClientCodegen