Get network summary by UUID
Get raw network in CX2 format (native V3)
Returns raw CX2 data which may contain fragmented aspects that need to be assembled into a complete CX2 network model for proper usage. The returned data follows the CX2 specification but may have aspects split across multiple fragments. For a fully assembled network object with utility methods, use getNetworkAsCX2Object() instead.
The UUID of the network to retrieve
Access options including optional access key
Promise resolving to raw CX2 network data that may be fragmented
Get attributes of selected nodes
Retrieves specific attributes for a set of nodes in a network. The server will return a 404 error if the network has no attributes on nodes.
The UUID of the network
Object containing node IDs and attribute names to retrieve
Array of node IDs (long numbers) to get attributes for
Array of attribute names to retrieve
Access options including optional access key
Promise resolving to a JSON object where keys are stringified node IDs and values are the selected attributes for that node
Get network summaries by UUIDs using V3 API (migrated from original NDEx.js)
Retrieves network summaries for multiple networks in a single batch request using V3 API. Uses the V3 API batch endpoint with format parameter support.
Array of network UUIDs to retrieve summaries for
OptionalaccessKey: stringOptional access key for private networks
Optionalformat: stringSummary format ("FULL" by default, can be "BASIC" or other supported formats)
Promise resolving to array of V3 network summaries
Search networks with V3 enhanced features
Get network as CX2Network object with utilities
Create new network from CX2
Update network with CX2 data
Upload CX2 network via multipart/form-data
Server endpoint: POST /v3/networks Consumes: multipart/form-data Form field: 'CXNetworkStream' (the CX2 content) Query params: visibility, folderId Returns: NdexObjectUpdateStatus
Upload network file (Deprecated convenience wrapper)
Delegates to uploadCX2Network(). Kept for backward compatibility.
Get network metadata (V3 enhanced)
Update network metadata
Get network aspect (specific CX2 aspect)
Delete network
The UUID of the network to delete
If true, permanently delete the network. If false (default), soft delete to trash for 30 days
NetworkServiceV3 - NDEx API v3 network operations Handles modern v3 endpoints with native CX2 support