v6

latestOpenAPI 3.1.02026-08-04135335658.3 KB
Node Libraries

Create Node Library

Endpoint to create a new node library.

post/workflows/v1/node-libraries

Request body

logical_idstring nullable

Unique identifier for the node library

namestring nullable

Name of the Node Library

descriptionstring nullable

Description of the node library

nodesPydanticObjectId[] nullable

List of node IDs that are part of this library

access_level'personal' | 'team' | 'system'

Enum representing different access control levels.

access_listPydanticObjectId[] nullable

List of user IDs or team IDs that have access to this node library

Example request

{
  "nodes": [
    "5eb7cf5a86d9755df3a6c593"
  ],
  "access_list": [
    "5eb7cf5a86d9755df3a6c593"
  ]
}

Response

Successful Response

Example response

{
  "node_library": {
    "_id": "5eb7cf5a86d9755df3a6c593"
  }
}