Skip to main content
Feedback

X-Flow-load

This extension allows you to perform load operations using your OpenAPI document.

Example

1  x-flow-load:
2 path: /albums/{id}/tracks
3 operation: get
4 parameters:
5 id: id
6 format:
7 default: json

Properties

PropertyDescription
pathThe path representing the relative endpoint called to perform the load operation.
operationThe HTTP method used to make the request.
parametersThe parameters included in the request. In this example, the id: in the URL is being mapped to an ID passed to the OpenAPI connector by Flow.
defaultProvide a value to apply when making a call to the API, instead of setting this parameter during the execution of a Flow.
On this Page