# File lib/fog/dns/requests/dnsmadeeasy/create_record.rb, line 40
        def create_record(domain, name, type, data, options = {})

          body = {
            "name" => name,
            "type" => type,
            "data" => data,
            "ttl"  => 1800
          }

          body.merge!(options)

          request(
            :expects  => 201,
            :method   => "POST",
            :path     => "/V1.2/domains/#{domain}/records",
            :body     => body.to_json
          )
        end