k-akarsh / exotel

Ruby interface to the Exotel API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

exotel

Ruby interface to the Exotel API

Install

gem install exotel-api-client

Requirements

  • httparty

Examples

Setup

require 'exotel-api-client'

# put your credentials here
account_sid = '<My Exotel SID>'
account_token = '<My Exotel Token>'

# set up a client that will talk to the Exotel REST API
@client = Exotel::Client.new(account_sid, account_token)

Send An SMS

sms_data = {
  "From" => "<6-character Sender ID>"
  "To"   => "<Phone Number>"
  "Body" => "<SMS content>"
}

client.Sms.post(sms_data)

Get Status of An SMS

client.SMS.Messages({:sid => '<SmsSid>'})

Get Call Details

client.Calls({:sid => '<CallSid>'})

About

Ruby interface to the Exotel API

License:MIT License


Languages

Language:Ruby 100.0%