Node

Restart the MobiusFlow hub

post
Path parameters
hidstring · min: 6 · max: 6Required

Hub ID (HID)

Example: 000001Pattern: \b^[0-9A-F]{6}$\b
Responses
200

Default Response

application/json
post
/api/engine/v3/node/restart/{hid}
POST /api/engine/v3/node/restart/{hid} HTTP/1.1
Host: 
Accept: */*
{
  "ts": "2025-01-01T00:00:00.000Z",
  "uri": "text"
}

Get the MobiusFlow hub ID

get
Responses
200

Default Response

application/json
get
/api/engine/v3/node/config/hid
GET /api/engine/v3/node/config/hid HTTP/1.1
Host: 
Accept: */*
{
  "ts": "2025-01-01T00:00:00.000Z",
  "uri": "text",
  "data": "000001"
}

Change the MobiusFlow hub ID

post
Path parameters
hidstring · min: 6 · max: 6Required

Hub ID (HID)

Example: 000001Pattern: \b^[0-9A-F]{6}$\b
Body
hidstring · min: 6 · max: 6Required

Hub ID (HID)

Example: 000001Pattern: \b^[0-9A-F]{6}$\b
Responses
200

Default Response

application/json
post
/api/engine/v3/node/config/hid/{hid}
POST /api/engine/v3/node/config/hid/{hid} HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 16

{
  "hid": "000001"
}
{
  "ts": "2025-01-01T00:00:00.000Z",
  "uri": "text"
}

Get the MobiusFlow hub broker statistics

get
Path parameters
hidstring · min: 6 · max: 6Required

Hub ID (HID)

Example: 000001Pattern: \b^[0-9A-F]{6}$\b
Responses
200

Default Response

application/json
get
/api/engine/v3/node/brokerstats/{hid}
GET /api/engine/v3/node/brokerstats/{hid} HTTP/1.1
Host: 
Accept: */*
{
  "ts": "2025-01-01T00:00:00.000Z",
  "uri": "text",
  "data": {
    "lastUpdated": "text",
    "upTime": 1,
    "clientCount": 1,
    "clientCountMax": 1,
    "messageCount": 1
  }
}

Perform a full backup of MobiusFlow data

get
Path parameters
hidstringRequired
Responses
200

Default Response

No content

get
/api/engine/v3/node/backup/full/{hid}
GET /api/engine/v3/node/backup/full/{hid} HTTP/1.1
Host: 
Accept: */*
200

Default Response

No content

Perform a full restore of MobiusFlow data

post
Path parameters
hidstringRequired
Responses
200

Default Response

No content

post
/api/engine/v3/node/restore/full/{hid}
POST /api/engine/v3/node/restore/full/{hid} HTTP/1.1
Host: 
Accept: */*
200

Default Response

No content

Restart one or more containers

post
Path parameters
hidstring · min: 6 · max: 6Required

Hub ID (HID)

Example: 000001Pattern: \b^[0-9A-F]{6}$\b
Bodystring[]
string[]Optional
Responses
200

Default Response

application/json
post
/api/engine/v3/node/restartcontainers/{hid}
POST /api/engine/v3/node/restartcontainers/{hid} HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 8

[
  "text"
]
{
  "ts": "2025-01-01T00:00:00.000Z",
  "uri": "text"
}

Last updated

Was this helpful?