Download the PHP package xoxzo/cloudphp without Composer
On this page you can find all versions of the php package xoxzo/cloudphp. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package cloudphp
xoxzo.cloudphp
This is the PHP client library for Xoxzo Cloud API. You can send sms or make a phone call and playback mp3 files.
Sample Code
Send SMS
Explanation
-
First, you need to create
XoxzoClient()
object. You must provide xoxzo sid and auth_token when initializing this object. You can get sid and auth_token after you sign up the xoxzo account and access the xoxzo dashboard. -
Then you can call
send_sms()
method. You need to provide three parameters.- message: sms text you want to send.
- recipient: phone number of the sms recipient. This must start with Japanese country code "+81" and follow the E.164 format.
- sender: this number will be displayed on the recipient device.
-
This method will return
XoxzoResponse
object. IfXoxzoResponse.errors == null
,XoxzoResponse->messages[0]->msgid
is the meesage id that you can pass to the `get_sms_delivery_status() call. - You can check the sms delivery status by
get_sms_delivery_status()
method. You will provide message-id of the sms you want to check.
Playback MP3
Explanation
-
You can call
call_simple_playback()
method to playback MP3 files. You need to provide three parameters.- caller: this number will be displayed on the recipient device.
- recording_url: MP3 file URL.
- recipient: phone number of the sms recipient. This must start with Japanese country code "+81" and follow the E.164 format.
-
This method will return
XoxzoResponse
object. IfXoxzoResponse.errors == null
,XoxzoResponse->messages[0]->callid
is the call id that you can pass to the `get_simple_playback_status() call. - You can check the call status by
get_simple_playback_status()
method. You will provide call-id of the phone call you want to check.
Playback TTS
Explanation
-
You can call
call_tts_playback()
method to playback TTS message. You need to provide four parameters.- caller: this number will be displayed on the recipient device.
- tts_message: TTS text message you want to playback.
- tts_lang: language code of TTS call.
- recipient: phone number of the sms recipient. This must start with Japanese country code "+81" and follow the E.164 format.
-
This method will return
XoxzoResponse
object. IfXoxzoResponse.errors == null
,XoxzoResponse->messages[0]->callid
is the call id that you can pass to the `get_simple_playback_status() call. - You can check the call status by
get_simple_playback_status()
method. You will provide call-id of the phone call you want to check.
DIN (Dial in numbers)
Subscribe DIN
Explanation
-
In order to subscribe DIN, you must find available unsubscribed DINs using get_din_list() method.
- Then you subscribe a DIN via subscribe_din() method specifying din unique id.
Set action URL
Explanation
- Once you subscribed the DIN, you can set action url to the DIN. This URL will be called in the event of the DIN gets called. The URL will called by http GET method with the parameters, caller and recipient.
Get the list of subscription:
Explanation
In order to get the list of current subscriptions, you can call the method above.
Unsubscribe DIN:
Explanation
When you no longer use DIN, you can unsubscribe the DIN by specifying the din unique id.