List supported table extractors
GET/v2/table_extractors
Table extractors are used to extract tabular data from documents during indexing.
Request
Header Parameters
Request-Timeout integer
Possible values: >= 1
The API will make a best effort to complete the request in the specified seconds or time out.
Request-Timeout-Millis integer
Possible values: >= 1
The API will make a best effort to complete the request in the specified milliseconds or time out.
Responses
- 200
- 403
List of supported table extractors.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
table_extractors object[]
An array of table extractors.
name string
The name of the table extractor.
is_default boolean
Indicates whether it is the default extractor when not specified during indexing.
description string
The description of the table extractor.
{
"table_extractors": [
{
"name": "textract",
"is_default": true,
"description": "Uses the AWS Textract service to extract tables."
}
]
}
Permissions do not allow listing table extractors.
- application/json
- Schema
- Example (from schema)
Schema
messages message[]
The messages describing why the error occurred.
request_id string
The ID of the request that can be used to help Vectara support debug what went wrong.
{
"messages": [
"Internal server error."
],
"request_id": "string"
}
Loading...