Docs are work in progress
Skip to main content

Fetch machine details

GET 

/api/v1/machines/:machineIdOrAlias

This API endpoint retrieve detailed information of a machine, including basic details, networking, telemetry, and system information. identified by the provided machineId or machine alias.

Request

Path Parameters

    machineIdOrAlias stringrequired

    The machineId - unique id of the machine, alias - machine alias

Responses

Success response

Schema

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

    payload

    object

    Schema for machines response type

    machineId string
    name string
    displayIconMediaPath string
    alias string

    tags

    object[]

  • Array [

  • key string
    value string
  • ]

  • telemetry

    object

    Schema for telemetry in machines response type

    status int32
    isMetricsEnabled boolean
    isLogsEnabled boolean
    lastActiveAt date-time

    networking

    object

    Schema for networking in machines response type

    fullDNSName string
    ipv4Address string
    networkIpSubnet string
    networkId string
    nodeId string
    networkName string

    sysInfo

    object

    Schema for sysinfo in machines response type

    hostname string
    osName string
    osVersion string
    osBuild string
    platform string
    platformRelease string
    arch string
    agentVersion string
    agentName string
    updatedAt date-time
Loading...