Hi !
I’m trying to request a SOAP API like this :
This worked but if I try to use a custom credential, it fails :
My credential is an HTTP Custom Auth :
{
"headers": {
"content-cype": "text/xml",
"SOAPAction": "http://archer-tech.com/webservices/CreateUserSessionFromInstance"
},
"body": "<?xml version=\"1.0\" encoding=\"utf-8\"?><soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\"><soap:Body><CreateUserSessionFromInstance xmlns=\"http://archer-tech.com/webservices/\"><userName>XXXXXXXXX</userName><instanceName>production</instanceName><password>XXXXXXXXX</password></CreateUserSessionFromInstance></soap:Body></soap:Envelope>"
}
The problem seems to be in the request body. With the first node, when I look to the request sent in my browser’s developer console, the body is a string :
Whereas with the second node, the body is an object :

