Skip to main content
GET
/
v1
/
failover
/
{site_id}
/
interfaces
List Router Interfaces
curl --request GET \
  --url https://api.altostrat.io/v1/failover/{site_id}/interfaces \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "ether1-wan",
    "type": "ether",
    "comment": "Primary ISP Connection",
    "mac_address": "00:0C:29:12:34:56"
  }
]

Authorizations

Authorization
string
header
required

Enter your JWT in the format: Bearer <token>

Path Parameters

site_id
string<uuid>
required

The unique identifier for the site.

Example:

"9c69345c-8d39-4786-9f17-8153c988c89a"

Response

A list of available router interfaces.

name
string

The name of the interface.

Example:

"ether1-wan"

type
string

The type of the interface.

Example:

"ether"

comment
string | null

A user-defined comment on the interface.

Example:

"Primary ISP Connection"

mac_address
string

The MAC address of the interface.

Example:

"00:0C:29:12:34:56"