REST API の FAQIssue <!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } REST 要求が No matching APIを返すのはなぜですか? これは、要求 URI がサポートされている API のいずれとも一致しないことを意味します。APIページ ([ REST] > [API] ) を確認して、有効な URI を取得します。また、すべての REST API は /api に関連しているため、URI は https://<instance.service-now.com>/api/ のようになります。 POST、PUT、または PATCH 操作の応答を取得したくありません。それらを抑制する方法はありますか? はい。X-No-Response-Body ヘッダーを使用して応答を抑制します。 REST API は既存の JSONv2 とどのように異なりますか? いくつかの違いがあります。まず、REST は XML をサポートしています。REST API は HTTP メソッドで動作し、適切なヘッダーと応答ステータスコードを使用して、REST のベストプラクティスにより厳密に従います。実装とパフォーマンスに関しては、内部でさらに多くの違いがあります。 認証ヘッダーを使用して大量の REST 要求を送信すると、毎回セッションが作成される可能性がありますか?どうすればこれを克服できますか? はい。毎回認証情報を送信すると、セッションが作成されます。代わりに、クライアントコードで Cookie を適切に処理すると、要求が既存のユーザーセッションにバインドされます。 REST の相互認証はサポートされていますか? いいえ。相互認証は送信 REST でのみ使用できます。ServiceNow REST API への受信要求は、相互認証をサポートしていません。 Release<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } Resolution<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } }