SQL CLR for calling the Twilio REST API
Currently it has a single method for sending SMS messages. Please help me implement the other API methods.
Compile this CLR, deploy it to your SQL server, and execute the procedure:
declare @sid varchar(34)
exec SendSMSMessage 'api_version', 'account_id', 'auth_token', 'from_number', 'to_number', 'message_body', @sid output
print(@sid)