# File lib/fog/bluebox/requests/dns/create_zone.rb, line 26
        def create_zone(options)
          body = %Q{<?xml version="1.0" encoding="UTF-8"?><domain><name>#{options[:name]}</name><ttl>#{options[:ttl]}</ttl>}
          body += %Q{<retry>#{options[:retry]}</retry>} if options[:retry]
          body += %Q{<refresh>#{options[:retry]}</refresh>} if options[:refresh]
          body += %Q{<minimum>#{options[:minimum]}</minimum>} if options[:minimum]
          body += %Q{</domain>}
          request(
            :body     => body,
            :expects  => 202,
            :method   => 'POST',
            :parser   => Fog::Parsers::DNS::Bluebox::CreateZone.new,
            :path     => "/api/domains.xml"
          )
        end