openapi-red 1.2.5

OpenAPI (Swagger) client for node-red

npm install openapi-red

This node allows to work with APIs defined by OpenAPI 3 (Swagger). You can set parameters within the Node-RED-UI and trigger the flow from within your flow.

It is based on swagger-js.

Usage

1. Get the API-operations list

Enter the URL to your OpenAPI configuration (json or yaml file) and push the read-button. That's it. You can now select the operation you want to run.

Optional: You can also use config nodes to manage your URLs.

Operations

2. Understanding the API

Hovering on an operations title or a key, you see the respective comments within the mouseover. This allows you to understand what a parameter is meant for. Required parameters are marked with an asterisk.

operation description

parameter description

For JSON-parameters you can further show the structure by clicking on show keys. Again, the comments can be found within the mouseover.

json description

3. Parameter configuration

Each parameter has an input-field corresponding to its type. You can further define that a parameter shall be read from the incoming message object or define a jsonata expression.

JSON parameters may define a sample structure. You can set this as the value by clicking the corresponding button - either with only the required keys (set required) or with all keys (set default).

4. Authentification

If the API requires an authentification token you can log in using the standard http-request node of Node-RED. The JWT token you get as a response must then be put into msg.openApiToken to be automatically placed in the request-header as bearer authentification. In case you would like to use a different authentification than bearer, you can use msg.headers as you can do with the default http request node of Node-RED.

Both message object will be deleted afterwards if you do not set the option "Keep authentification".

5. Error handling

You can choose how to handle a returning server error. The last server response object will be placed in msg.response instead of msg.error. This ensures that all 3 ways react the same.

  • Standard: The flow moves on normally. You have to handle an server error in your flow.
  • Separate output: Your flow will take a different way.
  • Throw an exception: Throws an node.error which can be catched by the standard 'catch' node (usefull for many nodes with the same error handling).

You find that example also in the sample flow (see below).

Error handling

Sample flow

You can find a sample flow in the node red imports where you can see some examples on how to configure the node.

Example

Or check it out with gitpod.

Gitpod

A ready to launch gitpod setting is available. Just start it, wait till your workspace is ready and enter node-red examples/openApi-petstore.json.

License

This repository and the code inside it is licensed under the MIT License. Read LICENSE for more information.

Developers

If you want to modify something inside the openApi-red.html file, I recommend to use SIR.

With help of SIR you can handle the openApi-red.svelte file in which the code is much cleaner and easier to handle.

Node Info

Version: 1.2.5
Updated 6 months, 3 weeks ago
License: MIT
Rating: 4.5 8

Actions

Rate:

Downloads

166 in the last week

Nodes

  • openApi-red
  • openApi-red-url

Keywords

  • node-red
  • swagger
  • swagger client
  • openApi
  • openApi client
  • open api
  • open api client
  • open
  • api

Maintainers

Contributors

  • Sebastian Meier
  • Christian Geiger