Creating a Mandrill service

Also had no issues calling /users/ping2.json according to the Mandrill documentation.

  1. Using same Remote Web Service config as in #1 above.

  2. Called POST /rest/mandrillapi/users/ping2.json with the following body:

     {
         "key": "hYn7IsUYWE7H6UlIfT_OEr"
     }
    
  3. Received the following response:

     {
         "PING": "PONG!"
     }
    

The record of this API call is also found in my Mandrill Dashboard’s API Logs.

If you prefer to code these calls into Swagger, I recommend you check Swagger specifications. Note that "path" is based off the Base URL you’ve already specified, and that "basePath" does not need to be specified as all paths are relative. I believe by defining full paths for both values, you’re ending up calling https://mandrillapp.com/api/1.0/https://mandrillapp.com/api/1.0/users/ping2.json. This however is a Swagger issue, not a DreamFactory issue, as I’ve tested all functionality and DreamFactory is able to make the calls successfully.