54 : <!--- Make sure the method is valid... --->
55 : <cfif NOT ListFindNoCase("GET,POST,PUT,DELETE", Arguments.Method)>
56 : <cfthrow type="TwilioRESTMethodException" detail="#Arguments.Method# is not a valid HTTP method for any Twilio REST resources. Valid methods include: GET, POST, PUT, DELETE." />
57 : </cfif>
58 : <!--- Build the URL... --->
|