Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/revmischa/net-sms-cdyne
Perl API client for CDYNE SMS REST API
https://github.com/revmischa/net-sms-cdyne
Last synced: 3 days ago
JSON representation
Perl API client for CDYNE SMS REST API
- Host: GitHub
- URL: https://github.com/revmischa/net-sms-cdyne
- Owner: revmischa
- Created: 2011-11-18T02:17:00.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2016-01-12T17:34:01.000Z (almost 9 years ago)
- Last Synced: 2024-10-18T07:53:56.982Z (3 months ago)
- Language: Perl
- Homepage:
- Size: 56.6 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
NAME
Net::SMS::CDYNE − Perl REST client for CDYNE’s SMSNotify APISYNOPSIS
use Net::SMS::CDYNE;
my $client = Net::SMS::CDYNE−>new(api_key => '123−45−6790');
my $resp = $client−>simple_sms_send_with_postback(
PhoneNumber => $to,
Message => $msg,
StatusPostBackURL => $reply_url,
);
warn "Sent OK: " . ($resp−>success ? 'yes' : 'no');DESCRIPTION
Spec: https://secure.cdyne.com/downloads/SPECS_SMS−Notify2.pdfUses SecureREST API: https://sms2.cdyne.com/sms.svc/SecureREST/help
METHODS
simple_sms_sendsimple_sms_send_with_postback
advanced_sms_send
get_unread_incoming_messages
get_message_status_by_reference_id
get_message_status
cancel_message
SEE ALSO
Net::SMS::CDYNE::ResponseAUTHOR
Mischa SpiegelmockLICENSE
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.