# File lib/fog/dynect/requests/dns/post_session.rb, line 6
        def post_session
          request(
            :expects  => 200,
            :method   => :post,
            :path     => "Session",
            :body     => MultiJson.encode({
              :customer_name  => @dynect_customer,
              :user_name      => @dynect_username,
              :password       => @dynect_password
            })
          )
        end