Miscellaneous Operations - Get Resource Info
Return information about the current resource.
GET {endpoint}/documentintelligence/info?api-version=2024-07-31-preview
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
endpoint
|
path | True |
string uri |
The Document Intelligence service endpoint. |
api-version
|
query | True |
string |
The API version to use for this operation. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
The request has succeeded. |
|
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 Resource Details
Sample request
GET https://myendpoint.cognitiveservices.azure.com/documentintelligence/info?api-version=2024-07-31-preview
Sample response
{
"customDocumentModels": {
"count": 2,
"limit": 13
}
}
Definitions
Name | Description |
---|---|
Custom |
Details regarding custom document models. |
Error |
The error object. |
Error |
Error response object. |
Inner |
An object containing more specific information about the error. |
Resource |
General information regarding the current resource. |
CustomDocumentModelsDetails
Details regarding custom document models.
Name | Type | Description |
---|---|---|
count |
integer |
Number of custom document models in the current resource. |
limit |
integer |
Maximum number of custom document models supported in the current resource. |
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. |
ResourceDetails
General information regarding the current resource.
Name | Type | Description |
---|---|---|
customDocumentModels |
Details regarding custom document models. |