Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add numbersUpdate method for updating the callback of a number in the account #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion NexmoAccount.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* numbersSearch ( $country_code, $pattern )
* numbersBuy ( $country_code, $msisdn )
* numbersCancel ( $country_code, $msisdn )
* numbersUpdate ( $country_code, $msisdn, $callbackurl )
*
*/

Expand All @@ -26,7 +27,8 @@ class NexmoAccount {
'get_own_numbers' => array('method' => 'GET', 'url' => '/account/numbers/{k}/{s}'),
'search_numbers' => array('method' => 'GET', 'url' => '/number/search/{k}/{s}/{country_code}?pattern={pattern}'),
'buy_number' => array('method' => 'POST', 'url' => '/number/buy/{k}/{s}/{country_code}/{msisdn}'),
'cancel_number' => array('method' => 'POST', 'url' => '/number/cancel/{k}/{s}/{country_code}/{msisdn}')
'cancel_number' => array('method' => 'POST', 'url' => '/number/cancel/{k}/{s}/{country_code}/{msisdn}'),
'update_number' => array('method' => 'POST', 'url' => '/number/update/{k}/{s}/{country_code}/{msisdn}?moHttpUrl={callbackurl}')
);


Expand Down Expand Up @@ -165,6 +167,21 @@ public function numbersCancel ($country_code, $msisdn) {
}


/**
* Update the callback for an existing number on your account
* @param $country_code Country Code for the number being updated
* @param $msisdn the number to update
* @param $callbackurl the callback url
* @return bool
*/
public function numbersUpdate ($country_code, $msisdn, $callbackurl) {
$country_code = strtoupper($country_code);

$tmp = $this->apiCall('update_number', array('country_code'=>$country_code, 'msisdn'=>$msisdn, 'callbackurl'=>$callbackurl));
return ($tmp['http_code'] === 200);
}


/**
* Run a REST command on Nexmo SMS services
* @param $command
Expand Down