Retrieve a node definition by name
GET/flow/:name
Retrieve a node definition by name
Request
Path Parameters
name stringrequired
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 [ 
- ] 
idstring
typestring
Possible values: [INPUT, PROCESSOR, OUTPUT, THEN]
priorityint32
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, DATE]
options
object[]
namestring
valueobject
valueobject
breakTypestring
Possible values: [NEW_LINE, SPACER]
inputs
object[]
idstring
namestring
typestring
Possible values: [NUMBER, NUMBER_ARRAY, STRING, BOOLEAN, TRIGGER, COLOR, ANY]
nodeIdstring
indexint32
outputs
object[]
idstring
namestring
typestring
Possible values: [NUMBER, NUMBER_ARRAY, STRING, BOOLEAN, TRIGGER, COLOR, ANY]
nodeIdstring
indexint32
displayCharacterstring
{
  "id": "string",
  "type": "INPUT",
  "priority": 0,
  "name": "string",
  "position": {
    "x": 0,
    "y": 0
  },
  "size": {
    "x": 0,
    "y": 0
  },
  "internals": [
    {
      "name": "string",
      "picker": {
        "type": "TEXT",
        "options": [
          {
            "name": "string",
            "value": {}
          }
        ]
      },
      "value": {},
      "breakType": "NEW_LINE"
    }
  ],
  "inputs": [
    {
      "id": "string",
      "name": "string",
      "type": "NUMBER",
      "nodeId": "string",
      "index": 0
    }
  ],
  "outputs": [
    {
      "id": "string",
      "name": "string",
      "type": "NUMBER",
      "nodeId": "string",
      "index": 0
    }
  ],
  "displayCharacter": "string"
}