Sdílet prostřednictvím


Document Models - Get Analyze Batch Result

Získá výsledek dávkové analýzy dokumentů.

GET {endpoint}/documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}?api-version=2024-11-30

Parametry identifikátoru URI

Name V Vyžadováno Typ Description
endpoint
path True

string

uri

Koncový bod služby Document Intelligence

modelId
path True

string

Jedinečný název modelu dokumentu

Vzor regulárního výrazu: ^[a-zA-Z0-9][a-zA-Z0-9._~-]{1,63}$

resultId
path True

string

uuid

Analyzujte ID výsledku dávkové operace.

api-version
query True

string

Verze rozhraní API, která se má použít pro tuto operaci.

Odpovědi

Name Typ Description
200 OK

AnalyzeBatchOperation

Požadavek byl úspěšný.

Other Status Codes

DocumentIntelligenceErrorResponse

Neočekávaná chybová odpověď

Zabezpečení

Ocp-Apim-Subscription-Key

Typ: apiKey
V: header

OAuth2Auth

Typ: oauth2
Tok: accessCode
URL autorizace: https://login.microsoftonline.com/common/oauth2/authorize
URL tokenu: https://login.microsoftonline.com/common/oauth2/token

Rozsahy

Name Description
https://cognitiveservices.azure.com/.default

Příklady

Get Analyze Batch Documents Result

Ukázkový požadavek

GET https://myendpoint.cognitiveservices.azure.com/documentintelligence/documentModels/prebuilt-invoice/analyzeBatchResults/3b31320d-8bab-4f88-b19c-2322a7f11034?api-version=2024-11-30

Ukázková odpověď

{
  "resultId": "3b31320d-8bab-4f88-b19c-2322a7f11034",
  "status": "succeeded",
  "percentCompleted": 100,
  "createdDateTime": "2021-09-24T13:00:46Z",
  "lastUpdatedDateTime": "2021-09-24T13:00:49Z",
  "result": {
    "succeededCount": 1,
    "failedCount": 1,
    "skippedCount": 1,
    "details": [
      {
        "sourceUrl": "https://myStorageAccount.blob.core.windows.net/myContainer/trainingDocs/file1.pdf",
        "resultUrl": "https://myStorageAccount.blob.core.windows.net/myOutputContainer/trainingDocsResult/file1.pdf.ocr.json",
        "status": "succeeded"
      },
      {
        "sourceUrl": "https://myStorageAccount.blob.core.windows.net/myContainer/trainingDocs/file2.jpg",
        "status": "failed",
        "error": {
          "code": "InvalidRequest",
          "message": "Invalid request.",
          "innererror": {
            "code": "InvalidContent",
            "message": "The file format is unsupported or corrupted. Refer to documentation for the list of supported formats."
          }
        }
      },
      {
        "sourceUrl": "https://myStorageAccount.blob.core.windows.net/myContainer/trainingDocs/file3.png",
        "status": "skipped"
      }
    ]
  }
}

Definice

Name Description
AnalyzeBatchOperation

Stav a výsledek dávkové operace analýzy

AnalyzeBatchOperationDetail

Podrobnosti operace pro dokument v dávkové analýze

AnalyzeBatchResult

Výsledek dávkové analýzy dokumentů

DocumentIntelligenceError

Objekt chyby.

DocumentIntelligenceErrorResponse

Objekt odpovědi na chybu

DocumentIntelligenceInnerError

Objekt obsahující konkrétnější informace o chybě.

DocumentIntelligenceOperationStatus

Stav operace.

AnalyzeBatchOperation

Stav a výsledek dávkové operace analýzy

Name Typ Description
createdDateTime

string

Datum a čas (UTC) při odeslání operace

error

DocumentIntelligenceError

Při dávkové analýze dokumentu došlo k chybě.

lastUpdatedDateTime

string

Datum a čas (UTC) při poslední aktualizaci stavu

percentCompleted

integer

Průběh operace (0–100).

result

AnalyzeBatchResult

Výsledek dávkové analýzy dokumentů

resultId

string

Analyzujte ID výsledku dávkové operace.

status

DocumentIntelligenceOperationStatus

Stav operace. notStarted, running, succeeded, orfailed

AnalyzeBatchOperationDetail

Podrobnosti operace pro dokument v dávkové analýze

Name Typ Description
error

DocumentIntelligenceError

Došlo k chybě.

resultUrl

string

Adresa URL kódu JSON s analýzou výsledku

sourceUrl

string

Adresa URL zdrojového dokumentu

status

DocumentIntelligenceOperationStatus

Analyzujte stav. úspěšné, neúspěšné nebo přeskočené

AnalyzeBatchResult

Výsledek dávkové analýzy dokumentů

Name Typ Description
details

AnalyzeBatchOperationDetail[]

Podrobnosti o operaci pro každý dokument v dávce

failedCount

integer

Početdokumentůch

skippedCount

integer

Početdokumentůch

succeededCount

integer

Počet dokumentů, které se dokončily se stavem, bylo úspěšné.

DocumentIntelligenceError

Objekt chyby.

Name Typ Description
code

string

Jedna ze serverově definovaných kódů chyb.

details

DocumentIntelligenceError[]

Pole podrobností o konkrétních chybách, které vedly k této nahlášené chybě.

innererror

DocumentIntelligenceInnerError

Objekt obsahující konkrétnější informace, než je aktuální objekt o chybě.

message

string

Čitelné znázornění chyby člověkem.

target

string

Cíl chyby.

DocumentIntelligenceErrorResponse

Objekt odpovědi na chybu

Name Typ Description
error

DocumentIntelligenceError

Informace o chybě

DocumentIntelligenceInnerError

Objekt obsahující konkrétnější informace o chybě.

Name Typ Description
code

string

Jedna ze serverově definovaných kódů chyb.

innererror

DocumentIntelligenceInnerError

Vnitřní chyba.

message

string

Čitelné znázornění chyby člověkem.

DocumentIntelligenceOperationStatus

Stav operace.

Name Typ Description
canceled

string

Operace byla zrušena.

failed

string

Operace se nezdařila.

notStarted

string

Operace ještě nebyla spuštěna.

running

string

Operace probíhá.

skipped

string

Operace byla vynechána.

succeeded

string

Operace byla úspěšná.