Now I am at Stack Overflow as I could not get a simple answer elsewhere for my problem.
I need to send multiple messages with Twilio using Postman. I need to know the script and procedure how to do it. I would prefer JSON(application/json) under body>raw
. And I would request if a screencast can be added to it.
Thanks in advance.
Postman
, new tab for a new requestPOST
from the request type drop-downEnter request URL
https://api.twilio.com/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Messages
(replace
ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
withYOUR_TWILIO_ACCOUNT_SID
)Click on
Authorization
tab (it's under the request type drop-down) and then for thetype
selectBasic Auth
and you will see two fieldsUsername
andPassword
Enter
YOUR_TWILIO_ACCOUNT_SID
forUsername
andYOUR_TWILIO_AUTH_TOKEN
forPassword
Body
tab and make sureform-data
is selected from the radio buttons. Here you need to enterKey
Value
pairs like in the picture below (but replace with your values,From
must be your Twilio number):Send
button