UiPath Documentation
document-understanding
2.2510
true
  • 基本情報
    • 概要
    • 上限とクォータ
  • Document Understanding™ API の使用例
  • ライセンス
  • トラブルシューティング
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。 新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
UiPath logo, featuring letters U and I in white

Document Understanding API ガイド

最終更新日時 2026年4月6日

Document Data の削除サービスを使用する

注:

制御を向上させるため、Du.Deletion.Api にアクセスできるのは、以下のスコープを持つ外部アプリケーションだけです。認証を行う前に、必ずこのスコープをアプリケーションに追加してください。

You can use the DELETE API to remove all runtime data (excluding Monitor data) related to a given documentId.

この API を使用すると、自動的に期限切れになるまで待たなくても、すべての関連データをドキュメントからクリーンアップすることができます。

ドキュメント データを削除する

ドキュメントにリンクされているすべてのデータの削除を開始するには、次の呼び出しを使用します。

DELETE /projects/{projectId}/document/{documentId}/
DELETE /projects/{projectId}/document/{documentId}/
注:

Deletion operations are asynchronous, which means the update might not appear right away. Please allow a short time before confirming.

curl -X 'DELETE' \
  'https://cloud.uipath.com/<Organization_Name>/<Tenant_Name>/du_/api/framework/projects/<Project_ID>/document/<Document_ID>/api-version=1.1' \
  -H 'accept: text/plain' \
  -H 'Content-Type: application/json' \
  -d '{
  "removeValidationDataFromStorage": true
}'
curl -X 'DELETE' \
  'https://cloud.uipath.com/<Organization_Name>/<Tenant_Name>/du_/api/framework/projects/<Project_ID>/document/<Document_ID>/api-version=1.1' \
  -H 'accept: text/plain' \
  -H 'Content-Type: application/json' \
  -d '{
  "removeValidationDataFromStorage": true
}'

削除の呼び出しを実行する際に、次の任意の入力パラメーターを使用することもできます。

removeValidationDataFromStorage: true or false (default)
removeValidationDataFromStorage: true or false (default)

removeValidationDataFromStorage パラメーターは、関連するストレージ バケット ファイルも削除するかどうかを制御します。

  • If set to true, the associated files from Orchestrator Storage Buckets are removed.

After the deletion call, a 202 Accepted response message is displayed.

削除を確定する

削除を確定するには、次の呼び出しを使用します。

GET /projects/{projectId}/digitization/result/{documentId}
GET /projects/{projectId}/digitization/result/{documentId}
curl -X 'GET' \
  'https://cloud.uipath.com/<Organization_Name>/<Tenant_Name>/du_/api/framework/projects/<Project_ID>/digitization/result/<Document_ID>?api-version=1.1' \
  -H 'accept: text/plain'
curl -X 'GET' \
  'https://cloud.uipath.com/<Organization_Name>/<Tenant_Name>/du_/api/framework/projects/<Project_ID>/digitization/result/<Document_ID>?api-version=1.1' \
  -H 'accept: text/plain'

Once the deletion is complete, a 404 Not Found message is returned.

  • ドキュメント データを削除する
  • 削除を確定する

このページは役に立ちましたか?

接続

ヘルプ リソース サポート

学習する UiPath アカデミー

質問する UiPath フォーラム

最新情報を取得