NetSuite - 邮递员 - REST - "Incorrect data center requested!"

NetSuite - Postman - REST - "Incorrect data center requested!"

我正在使用 Postman 连接到 NetSuite,并且已完成所有设置和授权。 当我尝试对示例模板使用 GET 方法时,请求 return 状态 200 正常,但出现此错误?

<?xml version="1.0" encoding="UTF-8"?>
<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>
                Incorrect data center requested! The data center you are requesting is not the data center where your account is hosted. To obtain the correct URL for your request, please use the SOAP getDataCenterUrls operation.
            </faultstring>
            <detail>
                <platformFaults:unexpectedErrorFault xmlns:platformFaults="urn:faults_/services/rest/record/v1/metadata-catalog/customer.platform.webservices.netsuite.com">
                    <platformFaults:code>
                        USER_ERROR
                    </platformFaults:code>
                    <platformFaults:message>
                        Incorrect data center requested! The data center you are requesting is not the data center where your account is hosted. To obtain the correct URL for your request, please use the SOAP getDataCenterUrls operation.
                    </platformFaults:message>
                </platformFaults:unexpectedErrorFault>
                <ns1:hostname xmlns:ns1="http://xml.apache.org/axis/">
                    acct027.prod.svale.netledger.com
                </ns1:hostname>
            </detail>
        </soapenv:Fault>
    </soapenv:Body>
</soapenv:Envelope>

我的 URL 设置与我公司 URL 的设置相同:

我见过其他类似的案例,而且所有的回复都与获取公司地址有关URL,因为我已经做到了。

有什么问题吗?

谢谢!

实际上,我的 postman 设置有一些错误:

Account_ID 应该完全这样输入,大写:

但是公司 URL 和 Rest Services 应该保持这样:

它对我有用。