Skip to main content
GET
/
{site_id}
/
tunnel
/
interfaces
Get router interfaces
curl --request GET \
  --url https://api.altostrat.io/{site_id}/tunnel/interfaces \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "<string>",
    "type": "<string>",
    "comment": "<string>",
    "mac_address": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

site_id
string<uuid>
required

Site UUID

Response

Array of interface data

name
string
type
string
comment
string
mac_address
string
I