ディスカッション
AIを用いた自動化で請求書処理を合理化
AIを用いた考察を使用して、計画と予測を迅速化
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
場所ごとのアイテム数量を検索するWebサービスリクエスト
適用
製品: NetSuite 2024.2
シナリオ
この記事では、場所ごとに対応する数量とすべてのアイテムを取得するXMLリクエストの例を示すことを目的としています。情報を取得するために、search タイプの SOAP アクションを実行することができます。使用される認証のタイプは、トークン・ベース認証です。
注:Token-Based Authentication の詳細については、記事を参照してください: 97826 Token-Based Authentication をご参照ください。
解決策
<soapenv:Envelope xmlns:xsd='http://www.w3.org/2001/XMLSchema'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/'
xmlns:platformCore='urn:core_2020_1.platform.webservices.netsuite.com'
xmlns:platformMsgs='urn:messages_2020_1.platform.webservices.netsuite.com'
xmlns:listAcct='urn:accounting_2020_1.lists.webservices.netsuite.com'
xmlns:platformCommon='urn:common_2020_1.platform.webservices.netsuite.com'>
unsafe:soapenv:Header
<tokenPassport xsi:type="platformCore:TokenPassport">
<account xsi:type="xsd:string">{{realm}}</account>
<consumerKey xsi:type="xsd:string">{{consumerKey}}</consumerKey>
<token xsi:type="xsd:string">{{tokenId}}</token>
<nonce xsi:type="xsd:string">{{nonce}}</nonce>