Skip to content

Dynamic Import API (v1)

Service for extracting text from various file formats

Download OpenAPI description
Languages
Servers
Mock server

https://api.mitigram.com/_mock/apis/miti.dynamicimportendpoint/swagger/

Operations

Aggregates results from the provided request.

Request

Body

The aggregate request data.

matchesArray of objects(TextMatch)required
Array [
Array [
matches[][][].​fieldstring or null
matches[][][].​valuestring or null
matches[][][].​indexinteger(int32)
matches[][][].​lengthinteger(int32)
matches[][][].​sourceinteger(int32)(TextMatchSource)
Enum01234
]
curl -i -X POST \
  https://api.mitigram.com/_mock/apis/miti.dynamicimportendpoint/swagger/api/v1/aggregate \
  -H 'Content-Type: application/json-patch+json' \
  -d '{
    "matches": [
      [
        [
          {
            "field": "string",
            "value": "string",
            "index": 0,
            "length": 0,
            "source": 0
          }
        ]
      ]
    ]
  }'

Responses

Returns success when the aggregation is processed.

Body
matchesArray of objects or null(TextMatch)
unmatchedArray of objects or null(TextMatch)
Response
No response example
Operations