Docs are work in progress
Skip to main content

Fetch network nodes

GET 

/api/v1/networks/:networkId/nodes

This API endpoint retrieve a list of network nodes within the network identified by the provided networkId. This includes details about each node and its associated network, machine information.

Request

Path Parameters

    networkId stringrequired

    The networkId - unique id of the network

Query Parameters

    allParams objectrequired

    allParams - pageNo, pageSize, sortBy, sortDirection, etc.

Responses

Success response

Schema

    success boolean
    message string
    status string
    statusCode int32
    errorCode string
    subErrors object[]

    payload

    object

    Schema for paginated response

    content

    object[]

  • Array [

  • nodeId string
    dnsName string
    ipv4Address string
    ipv6Address string
    networkId string
    createdAt date-time

    networks

    object

    Networks schema

    networkId string
    provider string
    ipSubnet string
    dnsName string
    dnsSuffix string
    networkName string
    isDefault boolean
    isNetworkKeyManaged boolean

    machineData

    object

    Schema for machine data in network node response

    machineId string
    displayIconMediaPath string
    alias string
    name string
    lastActiveAt date-time
  • ]

  • totalPages int32
    totalRecordCount int64
    pageSize int32
Loading...