UiPath Documentation
document-understanding
2.2510
true
  • Erste Schritte
    • Überblick
    • Limits und Kontingente
  • Verwendungsbeispiele für Document Understanding™ API
  • Lizenzierung
  • Fehlersuche und ‑behebung
Wichtig :
Es kann 1–2 Wochen dauern, bis die Lokalisierung neu veröffentlichter Inhalte verfügbar ist.
UiPath logo, featuring letters U and I in white

Document Understanding API guide

Letzte Aktualisierung 6. Apr. 2026

Autorisieren Sie mithilfe einer externen Anwendung und rufen Sie die verfügbaren Ressourcen ab

  1. Create a new Document UnderstandingTM project and retrieve the projectId (found within the project's URL).

    For this example we are using the predefined project* available in Swagger, identifiable with this projectID: 00000000-0000-0000-0000-000000000000.

    Hinweis:

    Das vordefinierte Projekt ist in der Document Understanding-Benutzeroberfläche nicht sichtbar. Sie bietet programmatischen Zugriff auf die verfügbaren öffentlichen ML-Modelle.

  2. Create an External Application where Document Understanding is used as a Resource and it includes all the available Application Scopes.

  3. Initiieren Sie einen curl-Aufruf an den Identitätsdienst, um ein Token zu erhalten.

curl --data \
-urlencode "scope=Du.Digitization"  --data \
-urlencode "client_id={app_id}" --data \
-urlencode "client_secret={app_secret}" --data \
-urlencode "grant_type=client_credentials" https://cloud.uipath.com/identity_/connect/token
curl --data \
-urlencode "scope=Du.Digitization"  --data \
-urlencode "client_id={app_id}" --data \
-urlencode "client_secret={app_secret}" --data \
-urlencode "grant_type=client_credentials" https://cloud.uipath.com/identity_/connect/token
Hinweis:

The Authorization token has an expiration period. See the following response for the expiration and make sure to renew it before it expires.

{
"access_token": "eyJh**CRaKrg",
"expires_in": 3600,
"token_type": "Bearer",
"scope": "Du.Digitization.Api"
}
{
"access_token": "eyJh**CRaKrg",
"expires_in": 3600,
"token_type": "Bearer",
"scope": "Du.Digitization.Api"
}

War diese Seite hilfreich?

Verbinden

Benötigen Sie Hilfe? Support

Möchten Sie lernen? UiPath Academy

Haben Sie Fragen? UiPath-Forum

Auf dem neuesten Stand bleiben