Download the PHP package smscx/smscx-api-php-library without Composer

On this page you can find all versions of the php package smscx/smscx-api-php-library. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package smscx-api-php-library

smscx-api-php-library

SMS Connexion + PHP logo

The SMS Connexion API PHP library provides convenient access to the SMS API of SMS.CX from applications written in the PHP language.

Using this library you can:

For more information, please visit https://sms.cx

Content:

Installation

Requirements

PHP 7.4 and later (works with PHP 8.0).

Composer

To install the library it is recommended that you use Composer:

The above command will install the library and all required dependencies.

To use the library, use Composer's autoload:

Dependencies

The library require the following extensions in order to work properly:

If you use Composer, these dependencies should be handled automatically. If you install manually, you'll want to make sure that these extensions are available.

Authentication

To use the library you must authenticate. SMS.CX PHP Library supports the authentication methods supported by the SMS Connexion API:

1. API Key

To create a new API Key go to SMS.CX Account > HTTP API > API Keys and click on New API Key.

Create new API KEY from SMS.CX Dashboard

Copy the API Key and use it in the library.

2. Oauth2 Access Token

Access tokens are used by applications to make API requests.

To create a new application go to SMS.CX Account > HTTP API > Applications and click on New Application.

When you have the Application ID and Application Secret, you can use them to request an access token that you can use to make API calls.

Create new application from SMS.CX Dashboard

Copy the APPLICATION_ID and APPLICATION_SECRET and use them to request an access token:

Access tokens provide three main security benefits over using an API Key:

Usage

The library needs to be configured with your account's Application ID & secret or API Key which are available in your SMS.CX Dashboard.

The following example will send SMS to a single phone number:

Example of bulk SMS sending (up to 25.000 destination phone numbers)

Handling errors

With this client library, you don’t need to check for non-200 HTTP responses. The library translates them as exceptions.

In some specific rare cases you may need to analyze the Error object for type and code properties.

To handle errors, use these two techniques:

1. Catch Exceptions

The SMS.CX PHP library raises an exception for every error type. It is recommended to catch and handle exceptions.

To catch an exception, use PHP’s try/catch syntax. SMS Connexion provides many exception classes you can catch. Each one represents a different kind of error. When you catch an exception, you can use its class to choose a response.

General exceptions:

Exceptions for methods that validate numbers or incur costs (to send SMS, add phone numbers to groups, validate number, etc.):

Exceptions for methods that require network coverage (send SMS, Viber, Whatsapp):

Exceptions for Otp:

Exceptions for Viber/Whatsapp:

2. Analyze Error object

The error object ( \Smscx\Client\Model\Error ), which is present in all Exceptions, store information about failures.

If you don’t want to rely on our existing Exceptions, you might need to analyze the details of the Error object.

You can retrieve the error object and examine it to learn more about the failure. Choose an appropriate response according on the error type. Check the examples provided to learn how to get the HTTP code and the error object.

A range of different error types are returned by the API, correlated with their HTTP codes:

Read the complete list of error types and codes from the API specification.

Example of error handling

In special cases, when using methods to validate phone numbers in bulk or when adding phone numbers to an existing group, the Error object will contain a list with invalid phone numbers (if the parameter allowInvalid was not set to true or if not a single valid number was detected).

Rate limit

To detect an API rate limit error, you can catch the Exception RateLimitExcedeedException or check the Error object for error type rate_limit or check if the HTTP code is 429:

Documentation

The docs folder provides detailed guides for using this library (methods, models, examples).

The examples folder provides an example for each method.

Full documentation of the API is available here.

Available methods

Read the documentation for each method to get more examples, complete parameter list, expected responses and list of error codes.

Class AccountApi

Method Description
getAccountBalance() Get account balance
getChannelPricing() Get channels pricing
getChannelPricingByCountryIso() Get pricing for channel by country iso
getChannelsStatus() Get status of all channels

Class ApplicationsApi

Method Description
getApplicationSettings() Get application settings
getApplicationsList() Get applications list
getScopes() Get scopes

Class AttachmentsApi

Method Description
deleteAttachment() Delete attachment
exportAttachmentHitsToCSV() Export attachment hits to CSV
exportAttachmentHitsToXLSX() Export attachment hits to XLSX
getAttachmentHits() Get attachment hits
getAttachmentsList() Get attachments list

Class ConversationsApi

Method Description
getConversation() Get conversation
getConverstionsList() Get conversations list
markConversationAsRead() Mark conversation as read
sendConversationReplySms() 💰 Send conversation reply via SMS
sendConversationReplyViber() 💰 Send conversation reply via Viber
sendConversationReplyWhatsapp() 💰 Send conversation reply via Whatsapp

Class GroupsApi

Method Description
addContactsToGroup() Add contacts to group
createGroup() Create new group
deleteContactFromGroup() Delete contact from group
deleteGroup() Delete group
emptyGroup() Empty group
exportGroupToCSV() Export group to CSV
exportGroupToXLSX() Export group to XLSX
getGroupDetails() Get group details
getGroupsList() Get list of groups
updateContactFromGroup() Update contact from group

Class MultichannelApi

Method Description
deleteScheduledMultichannelCampaign() Delete scheduled Multichannel campaign
deleteScheduledMultichannelMessage() Delete scheduled Multichannel message
estimateMultichannelCampaign() Estimate Multichannel campaign
estimateMultichannelMessage() Estimate Multichannel message
sendMultichannelCampaign() 💰 Send Multichannel campaign
sendMultichannelMessage() 💰 Send Multichannel message

Class NumbersApi

Method Description
getBulkLookupStatus() Get Bulk Lookup result
getSingleLookupStatus() Get Single Lookup result
getBulkLookupCampaigns() Get list of bulk lookup campaigns
lookupNumber() 💰 Lookup number
lookupNumbers() 💰 Lookup numbers in bulk
exportNumberLookupReportToCSV() Export number lookup campaign to CSV
exportNumberLookupReportToXLSX() Export number lookup campaign to XLSX
validateNumber() Validate number
validateNumbers() Validate numbers in bulk
getAvailableNumbers() Get available numbers for rent
rentNumber() 💰 Rent phone number
cancelRent() Cancel rent for phone number
renewRent() 💰 Renew rent for phone number
getRentStatus() Get status of rent
getRentedNumbers() Get list of your rented numbers
getInboundSms() Get inbound SMS from rented number
editRentSettings() Edit settings for active rent

Class OauthApi

Method Description
getAccessToken() Get access token

Class OptoutsApi

Method Description
addContactToOptoutsList() Add contact to optouts list
deleteContactFromOptoutsList() Delete contact from optouts list
exportOptoutsToCSV() Export optouts to CSV
exportOptoutsToXLSX() Export optouts to XLSX
getOptoutsList() Get optouts list

Class OriginatorsApi

Method Description
createOriginator() Create new originator
deleteOriginator() Delete originator
getOriginatorsList() Get originators list

Class OtpApi

Method Description
cancelOtp() Cancel OTP
getOtpStatus() Get OTP status
newOtp() 💰 New OTP
verifyOtp() Verify OTP

Class ReportsApi

Method Description
exportAdvancedReportToCSV() Export advanced report to CSV
exportAdvancedReportToXLSX() Export advanced report to XLSX
exportCampaignReportToCSV() Export campaign report to CSV
exportCampaignReportToXLSX() Export campaign report to XLSX
getAdvancedReport() Get advanced report
getCampaignReport() Get campaign report
getCampaignsList() Get list of sent campaigns
getSingleReport() Get report for single SMS or Viber or Whatsapp or Multichannel
getSummaryReports() Get summary reports for a dimension

Class ShortlinksApi

Method Description
createShortlink() Create shortlink
deleteShortlink() Delete shortlink
exportShortlinkHitsToCSV() Export shortlink hits to CSV
exportShortlinkHitsToXLSX() Export shortlink hits to XLSX
getShortlinkHits() Get shortlink hits
getShortlinksList() Get shortlinks list
updateShortlink() Update shortlink

Class SmsApi

Method Description
deleteScheduledSms() Delete scheduled SMS
deleteScheduledSmsCampaign() Delete scheduled SMS campaign
estimateSms() Estimate new SMS
estimateSmsCampaign() Estimate SMS campaign
sendSms() 💰 Send SMS
sendSmsCampaign() 💰 Send SMS campaign

Class TemplatesApi

Method Description
createTemplate() Create template
deleteTemplate() Delete template
getTemplate() Get template
getTemplatesList() Get templates list
updateTemplate() Update template

Class ViberApi

Method Description
deleteScheduledViberCampaign() Delete scheduled Viber campaign
deleteScheduledViberMessage() Delete scheduled Viber message
estimateViberCampaign() Estimate Viber campaign
estimateViberMessage() Estimate Viber message
sendViberCampaign() 💰 Send Viber campaign
sendViberMessage() 💰 Send Viber message

Class WhatsappApi

Method Description
deleteScheduledWhatsappMessage() Delete scheduled Whatsapp message
estimateWhatsappMessage() Estimate Whatsapp message
sendWhatsappMessage() 💰 Send Whatsapp message

Authorization

ApiKeyAuth

BasicAuth

BearerAuth

Tests

To run the tests, use:

Author

[email protected]

About this package

License

Apache 2.0 © 2022 SMS Connexion


All versions of smscx-api-php-library with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4 || ^8.0
ext-curl Version *
ext-json Version *
ext-mbstring Version *
guzzlehttp/guzzle Version ^7.3
guzzlehttp/psr7 Version ^1.7 || ^2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package smscx/smscx-api-php-library contains the following files

Loading the files please wait ....