v1

latestOpenAPI 3.1.02026-07-227350156.5 KB
Universal Enrichment

Get metadata for the batch universal enrichment endpoint

Returns metadata about this endpoint, including the current synchronousMax — the cap on items per request when ?synchronous=true. Can be used to fetch the current cap dynamically.

options/batches/transactions/universal/enrich

Response

Successful operation

namestring required

The display name of the endpoint method.

descriptionstring required

A short description of the endpoint.

rendersstring[] required

Content types this endpoint can render.

parsesstring[] required

Content types this endpoint can parse.

synchronousMaxinteger required

The maximum number of items allowed in a single microbatch (?synchronous=true).

Example response

{
  "name": "Post",
  "description": "Enrich a list of universal transactions",
  "renders": [
    "application/json"
  ],
  "parses": [
    "application/json"
  ],
  "synchronousMax": 100
}