@archastro/sdk
    Preparing search index...
    Index

    Constructors

    Methods

    Constructors

    Methods

    • Retrieve a workflow node type Returns the full definition for a single workflow node type, identified by its string identifier. The response includes the node type's label, description, category, display properties, and the complete list of configurable field definitions. Returns 404 if no node type with the given identifier is registered. This endpoint requires a valid authenticated session.

      Parameters

      • nodeType: string

        Identifier of the node type to retrieve, e.g. "http_request" or "conditional".

      Returns Promise<NodeType>

      The requested workflow node type definition.

    • List workflow node types Returns an array of all node type definitions registered with the workflow host. Node types describe the available building blocks for constructing workflow graphs, including each type's label, category, color, and configurable field definitions. This endpoint requires a valid authenticated session. It does not support pagination — all registered node types are returned in a single response. The list reflects the node types available at the time of the request; types are registered at startup and do not change at runtime.

      Returns Promise<NodeType[]>

      Array of all registered workflow node type definitions.