Miscellaneous Operations - Get Document Classifier Copy To Operation
Gets operation info.
GET {endpoint}/documentintelligence/operations/{operationId}?_overload=getDocumentClassifierCopyToOperation&api-version=2024-07-31-preview
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
endpoint
|
path | True |
string uri |
The Document Intelligence service endpoint. |
operation
|
path | True |
string |
Operation ID |
api-version
|
query | True |
string |
The API version to use for this operation. |
Request Header
Name | Required | Type | Description |
---|---|---|---|
x-ms-client-request-id |
string uuid |
An opaque, globally-unique, client-generated string identifier for the request. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
The request has succeeded. Headers x-ms-client-request-id: string |
|
Other Status Codes |
An unexpected error response. |
Security
Ocp-Apim-Subscription-Key
Type:
apiKey
In:
header
OAuth2Auth
Type:
oauth2
Flow:
accessCode
Authorization URL:
https://login.microsoftonline.com/common/oauth2/authorize
Token URL:
https://login.microsoftonline.com/common/oauth2/token
Scopes
Name | Description |
---|---|
https://cognitiveservices.azure.com/.default |
Examples
Get Operation - Document Classifier Copy To
Sample request
GET https://myendpoint.cognitiveservices.azure.com/documentintelligence/operations/b704bb00-d130-4f3f-a1d8-ca96de3eabb4?_overload=getDocumentClassifierCopyToOperation&api-version=2024-07-31-preview
Sample response
{
"operationId": "b704bb00-d130-4f3f-a1d8-ca96de3eabb4",
"status": "succeeded",
"percentCompleted": 100,
"createdDateTime": "2021-09-23T09:12:57Z",
"lastUpdatedDateTime": "2021-09-23T09:13:01Z",
"kind": "documentClassifierCopyTo",
"resourceLocation": "https://myendpoint.cognitiveservices.azure.com/documentintelligence/documentClassifiers/myCustomClassifier",
"result": {
"classifierId": "myCustomClassifier",
"description": "Classifier description",
"createdDateTime": "2022-07-30T00:00:00Z",
"expirationDateTime": "2023-01-01T00:00:00Z",
"apiVersion": "2024-07-31-preview",
"docTypes": {
"formA": {
"azureBlobSource": {
"containerUrl": "https://myStorageAccount.blob.core.windows.net/myContainer",
"prefix": "formADocs/"
}
},
"formB": {
"azureBlobFileListSource": {
"containerUrl": "https://myStorageAccount.blob.core.windows.net/myContainer",
"fileList": "formB.jsonl"
}
}
}
}
}
Definitions
Name | Description |
---|---|
Azure |
Azure Blob Storage content. |
Azure |
File list in Azure Blob Storage. |
Classifier |
Classifier document type info. |
Content |
Type of content source. |
Document |
Get Operation response object. |
Document |
Document classifier info. |
Error |
The error object. |
Error |
Error response object. |
Inner |
An object containing more specific information about the error. |
Operation |
Type of operation. |
Operation |
Operation status. |
Warning |
The error object. |
AzureBlobContentSource
Azure Blob Storage content.
Name | Type | Description |
---|---|---|
containerUrl |
string |
Azure Blob Storage container URL. |
prefix |
string |
Blob name prefix. |
AzureBlobFileListContentSource
File list in Azure Blob Storage.
Name | Type | Description |
---|---|---|
containerUrl |
string |
Azure Blob Storage container URL. |
fileList |
string |
Path to a JSONL file within the container specifying a subset of documents. |
ClassifierDocumentTypeDetails
Classifier document type info.
Name | Type | Description |
---|---|---|
azureBlobFileListSource |
Azure Blob Storage file list specifying the training data for a classifier document type. Either azureBlobSource or azureBlobFileListSource must be specified. |
|
azureBlobSource |
Azure Blob Storage location containing the training data for a classifier document type. Either azureBlobSource or azureBlobFileListSource must be specified. |
|
sourceKind |
Type of training data source. |
ContentSourceKind
Type of content source.
Name | Type | Description |
---|---|---|
azureBlob |
string |
Files in a path within an Azure Blob Storage container. |
azureBlobFileList |
string |
A file list specifying individual files in an Azure Blob Storage container. |
base64 |
string |
Content represented via Base64 encoding. |
url |
string |
Content at a specific URL. |
DocumentClassifierCopyToOperationDetails
Get Operation response object.
Name | Type | Description |
---|---|---|
apiVersion |
string |
API version used to create this operation. |
createdDateTime |
string |
Date and time (UTC) when the operation was created. |
error |
Encountered error. |
|
kind |
string:
document |
Type of operation. |
lastUpdatedDateTime |
string |
Date and time (UTC) when the status was last updated. |
operationId |
string |
Operation ID |
percentCompleted |
integer |
Operation progress (0-100). |
resourceLocation |
string |
URL of the resource targeted by this operation. |
result |
Operation result upon success. |
|
status |
Operation status. notStarted, running, completed, or failed |
|
tags |
object |
List of key-value tag attributes associated with the document model. |
DocumentClassifierDetails
Document classifier info.
Name | Type | Description |
---|---|---|
apiVersion |
string |
API version used to create this document classifier. |
baseClassifierId |
string |
Base classifierId on top of which the classifier was trained. |
classifierId |
string |
Unique document classifier name. |
createdDateTime |
string |
Date and time (UTC) when the document classifier was created. |
description |
string |
Document classifier description. |
docTypes |
<string,
Classifier |
List of document types to classify against. |
expirationDateTime |
string |
Date and time (UTC) when the document classifier will expire. |
warnings |
Warning[] |
List of warnings encountered while building the classifier. |
Error
The error object.
Name | Type | Description |
---|---|---|
code |
string |
One of a server-defined set of error codes. |
details |
Error[] |
An array of details about specific errors that led to this reported error. |
innererror |
An object containing more specific information than the current object about the error. |
|
message |
string |
A human-readable representation of the error. |
target |
string |
The target of the error. |
ErrorResponse
Error response object.
Name | Type | Description |
---|---|---|
error |
Error info. |
InnerError
An object containing more specific information about the error.
Name | Type | Description |
---|---|---|
code |
string |
One of a server-defined set of error codes. |
innererror |
Inner error. |
|
message |
string |
A human-readable representation of the error. |
OperationKind
Type of operation.
Name | Type | Description |
---|---|---|
documentClassifierBuild |
string |
Build a new custom classifier model. |
documentClassifierCopyTo |
string |
Copy an existing document classifier to potentially a different resource, region, or subscription. |
documentModelBuild |
string |
Build a new custom document model. |
documentModelCompose |
string |
Compose a new custom document model from existing models. |
documentModelCopyTo |
string |
Copy an existing document model to potentially a different resource, region, or subscription. |
OperationStatus
Operation status.
Name | Type | Description |
---|---|---|
canceled |
string |
The operation has been canceled. |
completed |
string |
The operation has completed. |
failed |
string |
The operation has failed. |
notStarted |
string |
The operation has not started yet. |
running |
string |
The operation is in progress. |
succeeded |
string |
The operation has succeeded. |
Warning
The error object.
Name | Type | Description |
---|---|---|
code |
string |
One of a server-defined set of warning codes. |
message |
string |
A human-readable representation of the warning. |
target |
string |
The target of the error. |