I'm trying to connect Netsuite vía SOAP using Postman. I already made a connection with GET but all I get in the response is always the same: "You have successfully connected to the NetSuite SOAP Server. The Server is operational." Idk if I'm making something wrong, the endpoint is: https://myAccountId.suitetalk.api.netsuite.com/services/NetSuitePort_2021_1
The body I'm sending:
<soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
<soap-env:Header>
<tokenPassport xmlns="urn: messages_2017_2.platform.webservices.netsuite.com" xmlns:ns1="urn:core_2017_2.platform.webservices.netsuite.com">
<account>{{ACCOUNT}}</account>
<consumerKey>{{CONSUMER_KEY}}</consumerKey>
<token>{{TOKEN_ID}}</token>
<nonce>{{nonce}}</nonce>
<timestamp>{{timestamp}}</timestamp>
<signature algorithm="HMAC-SHA1">{{signature}}</signature>
</tokenPassport>
<preferences>
<runServerSuiteScriptAndTriggerWorkflows>
false
</runServerSuiteScriptAndTriggerWorkflows>
</preferences>
<searchPreferences>
<pageSize>1000</pageSize>
<bodyFieldsOnly>false</bodyFieldsOnly>
</searchPreferences>
</soap-env:Header>
<soap-env:Body>
<urn:get xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:platformCore="urn:core_2017_2.platform.webservices.netsuite.com">
<urn:baseRef internalId="46" type="invoice" xsi:type="platformCore:RecordRef">
</urn:baseRef>
</urn: get>
</soap-env:Body>
</soap-env:Envelope>