Skip to main content
GET
/
workflows
/
v1
/
node-libraries
Get Node Libraries
curl --request GET \
  --url https://api-qa.interactly.ai/workflows/v1/node-libraries \
  --header 'Authorization: Bearer <token>'
{
  "node_libraries": [
    {
      "team_id": "<string>",
      "created_by": "<string>",
      "updated_by": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "_id": "5eb7cf5a86d9755df3a6c593",
      "node_library_config": {
        "logical_id": "<string>",
        "name": "<string>",
        "description": "<string>",
        "nodes": [
          "<string>"
        ],
        "access_level": "personal",
        "access_list": [
          "<string>"
        ]
      }
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

Retrieve your API Key from Dashboard API Keys Section.

Query Parameters

size
integer
default:100

Number of items per page

Required range: x >= 1
page
integer
default:1

Page number

Required range: x >= 1
search
string | null

Search keywords

start
string<date-time> | null

Filter by start time (ISO 8601 format)

end
string<date-time> | null

Filter by end time (ISO 8601 format)

access_level
default:all

Access level filter for the node library. Use 'all' to retrieve all nodes regardless of access level. Enum representing different access control levels.

Available options:
personal,
team,
system

Response

Successful Response

Response model for a list of node library. Contains a list of NodeLibraryModel objects.

node_libraries
NodeLibraryModel · object[]

List of node libraries

total
integer | null

Total number of node libraries available without pagination.