I was wondering if any one would know any other id...
# suitetalkapi
c
I was wondering if any one would know any other ideas why this error would be produced with calling the Suit Talk SOAP API? this is the article that I am following
Copy code
<soapenv:Envelope xmlns:soapenv="<http://schemas.xmlsoap.org/soap/envelope/>" xmlns:xsd="<http://www.w3.org/2001/XMLSchema>" xmlns:xsi="<http://www.w3.org/2001/XMLSchema-instance>">
   <soapenv:Body>
      <soapenv:Fault>
         <faultcode>soapenv:Server.userException</faultcode>
         <faultstring>Invalid login attempt.</faultstring>
         <detail>
            <platformFaults:invalidCredentialsFault xmlns:platformFaults="urn:faults_2020_2.platform.webservices.netsuite.com">
               <platformFaults:code>USER_ERROR</platformFaults:code>
               <platformFaults:message>Invalid login attempt.</platformFaults:message>
            </platformFaults:invalidCredentialsFault>
            <ns1:hostname xmlns:ns1="<http://xml.apache.org/axis/>">partners011</ns1:hostname>
         </detail>
      </soapenv:Fault>
   </soapenv:Body>
</soapenv:Envelope>
I have gone through and done the following: 1. Enable Web Services and Token-based Authentication in your NetSuite instance 2. Create an integration record 3. Create an integration role with required permission levels for your integration 4. Assign the integration role to the integration user 5. Create access token for this integration user
b