- twilio-send-sms to body #!key status-callback application-sidprocedure
Send an SMS using the Twilio API; see http://www.twilio.com/docs/api/rest/sending-sms.
- to
- The number to send to
- body
- The SMS to send
- status-callback
- POST when the message is processed
- application-sid
- The application's SID
(define (twilio-send-sms to body #!key status-callback application-sid) (let ((parameters `((from unquote (twilio-from)) (to unquote to) (body unquote body) (status-callback unquote status-callback) (application-sid unquote application-sid)))) (with-input-from-request (twilio-url-sms) (upper-camel-filter-parameters parameters) void)))