Hello I am trying to make a soap call through postman but I get an error that my username or password is incorrect. For username I use the email I have on Docusign and for the password the app password I created from the settings. Is this combination correct?
XML body
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ds="http://www.docusign.net/API/3.0">
<soapenv:Header>
<wsse:Security soapenv:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<wsse:UsernameToken>
<wsse:Username>myEmail</wsse:Username>
<wsse:Password>myPassword</wsse:Password>
</wsse:UsernameToken>
</wsse:Security>
</soapenv:Header>
<soapenv:Body>
<ds:RequestEnvelope>
<ds:EnvelopeID>MyEnvelopeId</ds:EnvelopeID>
</ds:RequestEnvelope>
</soapenv:Body>
</soapenv:Envelope>
For Headers I have
Content-Type : text/xml; charset=utf-8
SOAPAction : RequestStatus
The error on the response:
<soap:Body>
<soap:Fault>
<faultcode>soap:Client</faultcode>
<faultstring>One or both of Username and Password are invalid.</faultstring>
<faultactor>missing in Web.Config</faultactor>
<detail>
<ErrorCode xmlns="missing in Web.Config">113</ErrorCode>
<ErrorReason xmlns="missing in Web.Config">One or both of Username and Password are invalid.</ErrorReason>
</detail>
</soap:Fault>
</soap:Body>