Content-Type in Outbound SOAP action - Method failed: XXXX with code: 415Issue You will notice HTTP 415 response code, due to the a mis-match in content-type. Example: Method failed: XXXX with code: 415ReleaseAll Available Releases.CauseServiceNow sends SOAP payloads using SOAPv1.1, But web service requires SOAPv1.2.To work past this, you can create a script to force the content to be V1.2 compliant as follows: �try {var s = new sn_ws.SOAPMessageV2('<SOAP Message>', '<SOAP Function>');s.setRequestHeader("Content-Type","application/soap+xml; charset=utf-8");var body ='COPY_XML_HERE';s.setRequestBody(body);var response = s.execute();var responseBody = response.getBody();var status = response.getStatusCode();}catch(ex) {var message = ex.getMessage();} You can find the above JavaScript code by navigating to the SOAP function and clicking on 'Preview Script Usage' and adding the setRequestHeader function.Related LinksPreview Soap Message: https://docs.servicenow.com/csh?topicname=c_UseASOAPMessageInAScript.html&version=latest SOAPMessageV2 - setRequestHeader: https://docs.servicenow.com/csh?topicname=c_SOAPMessageV2API.html&version=latest#r_SMV2-setRequestHeader_String_headerName_String_headerValue