Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

import plivo

auth_id = "MAMMM0ZJAWMGZHMTM4ZJ"
auth_token = "ZmUzODVjYjFhODA2NGQ4NmM5YTMxYjE4NDg0MjQ4"

p = plivo.RestAPI(auth_id, auth_token)

params = {
'src': '1111111111',
'dst' : '918980358300<918000552229', # Receivers' phone numbers with country
code. The numbers are separated by "<" delimiter.
'text' : "Download BookMyHaircut.com/download"
}

response = p.send_message(params)

print str(response)

You might also like