Skip to content

Instantly share code, notes, and snippets.

@vernak2539
Forked from timsim00/Fuel-Node-SOAP Custom headers
Created July 16, 2015 14:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vernak2539/a1b5c6e36f6c7f1fe63b to your computer and use it in GitHub Desktop.
Save vernak2539/a1b5c6e36f6c7f1fe63b to your computer and use it in GitHub Desktop.
Fuel-Node-SOAP - Custom headers
var callback = function(err, data) {
};
SoapClient.retrieve(
'Email',
, ['ID','Name']
, {
filter: {...}
, reqOptions: {
headers: {
'customheaderkey':'customHeaderValue'
}
}
}
, callback
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment