Passar cabeçalhos de solicitação em uma chamada jQuery AJAX GET

Estou tentando passar cabeçalhos de solicitação em um AJAX GET usando jQuery. No bloco a seguir, "data" passa automaticamente os valores na string de consulta. Existe uma maneira de passar esses dados no cabeçalho da solicitação?

$.ajax({
         url: "http://localhost/PlatformPortal/Buyers/Account/SignIn",
         data: { signature: authHeader },
         type: "GET",
         success: function() { alert('Success!' + authHeader); }
      });

O seguinte também não funcionou

$.ajax({
         url: "http://localhost/PlatformPortal/Buyers/Account/SignIn",
         beforeSend: { signature: authHeader },
         async: false,                    
         type: "GET",
                    success: function() { alert('Success!' + authHeader); }
      });

questionAnswers(3)

yourAnswerToTheQuestion