2.0.1 • Published 3 years ago

node-red-contrib-t83-non-destructive-inspection v2.0.1

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
3 years ago

node-red-contrib-t83-non-destructive-inspection

Node-RED node for t83-non-destructive-inspection

T8.3 - Non Destructive Inspection - APIs Definitions.

Install

To install the stable version use the Menu - Manage palette - Install option and search for node-red-contrib-t83-non-destructive-inspection, or run the following command in your Node-RED user directory, typically ~/.node-red

npm install node-red-contrib-t83-non-destructive-inspection

Usage

Methods

GET /filesystem/

Get Files

Accept : 'application/json'

POST /filesystem/

Create

file : string
 
Accept : 'application/json'
Content-Type : 'multipart/form-data'

PATCH /filesystem/

Update

file : string
 
Accept : 'application/json'
Content-Type : 'multipart/form-data'

GET /filesystem/{filename}

Get File

filename : string
 
Accept : 'application/json'

DELETE /filesystem/{filename}

Delete

filename : string
 
Accept : 'application/json'

POST /flow/set

Set Flow Recipe

filename : string
body : 
 
Accept : 'application/json'
Content-Type : 'application/json'

POST /flow/run

Run Flow Saved Recipe

body : 
 
Accept : 'application/json'
Content-Type : 'application/json'

GET /modules

Get Modules

Accept : 'application/json'

POST /modules/ui

Get Function Ui

body : 
 
Accept : 'application/json'
Content-Type : 'application/json'

POST /modules/process

This functions runs a process on a Module's Function on some Input Parameters. It returns the processed Output Parameters.

Args: process_request (ProcessRequest): The Process Request object containing the Input Parameters

Returns: ProcessResponse: The Process Response object containing the Output Parameters

body : 
 
Accept : 'application/json'
Content-Type : 'application/json'

GET /

Root

Accept : 'application/json'

License

Apache-2.0