Retrieve all node definitions by type
GET/flow/:type
Retrieve all node definitions by type
Request
Path Parameters
type stringrequired
Possible values: [INPUT, PROCESSOR, OUTPUT, THEN]
Header Parameters
Authorization string
X-Forwarded-Proto string
X-Forwarded-Host string
Responses
- default
default response
- application/json
- Schema
- Example (from schema)
Schema
- Array [ 
- Array [ 
- Array [ 
- ] 
- ] 
- Array [ 
- ] 
- Array [ 
- ] 
- ] 
idstring
typestring
Possible values: [INPUT, PROCESSOR, OUTPUT, THEN]
namestring
position
object
xfloat
yfloat
size
object
xfloat
yfloat
internals
object[]
namestring
picker
object
typestring
Possible values: [TEXT, MULTILINE, NUMBER, DROPDOWN, DOUBLE_DROPDOWN, CHECKBOX, ASSET_ATTRIBUTE, COLOR]
options
object[]
namestring
valueobject
valueobject
inputs
object[]
idstring
namestring
typestring
Possible values: [NUMBER, STRING, BOOLEAN, TRIGGER, COLOR, ANY]
nodeIdstring
indexint32
outputs
object[]
idstring
namestring
typestring
Possible values: [NUMBER, STRING, BOOLEAN, TRIGGER, COLOR, ANY]
nodeIdstring
indexint32
displayCharacterstring
[
  {
    "id": "string",
    "type": "INPUT",
    "name": "string",
    "position": {
      "x": 0,
      "y": 0
    },
    "size": {
      "x": 0,
      "y": 0
    },
    "internals": [
      {
        "name": "string",
        "picker": {
          "type": "TEXT",
          "options": [
            {
              "name": "string",
              "value": {}
            }
          ]
        },
        "value": {}
      }
    ],
    "inputs": [
      {
        "id": "string",
        "name": "string",
        "type": "NUMBER",
        "nodeId": "string",
        "index": 0
      }
    ],
    "outputs": [
      {
        "id": "string",
        "name": "string",
        "type": "NUMBER",
        "nodeId": "string",
        "index": 0
      }
    ],
    "displayCharacter": "string"
  }
]