Skip to content

POST - MinuteView API ​

Exposes a workflow as an HTTP POST endpoint that accepts a JSON body, starting execution when the endpoint is called.

Purpose ​

Use this trigger when an external system or integration needs to send structured data to a workflow over HTTP. The JSON body and any URL parameters are parsed and made available to downstream tasks immediately. This is the standard entry point for event-driven integrations where another application needs to push data into MinuteView without a file attachment.

Inputs ​

FieldTypeRequiredDescription
Requires AuthenticationCheckboxNoWhen checked, the endpoint requires a valid MinuteView authentication token before the workflow runs. Leave unchecked to allow unauthenticated access.

Outputs ​

NameDescription
UrlParamsA key-value dictionary of the URL query parameters supplied with the request.
JsonBodyThe parsed JSON body sent in the POST request, available as a structured object for downstream tasks.

Tentech