Skip to main content
GET
/
radius
/
nas
List NAS Devices
curl --request GET \
  --url https://api.altostrat.io/radius/nas \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "nas_01HGM5V65A5A5A5A5A5A5A5A5C",
      "nas_identifier": "192.168.88.1",
      "type": "mikrotik",
      "description": "Main office router",
      "metadata": "<any>",
      "certificate": "<string>",
      "private_key": "<string>",
      "client_ca": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "per_page": 25,
    "has_more": true,
    "next_cursor": "eyJwayI6eyJT..."
  },
  "links": {
    "first": "https://api.altostrat.io/radius/users?per_page=25",
    "next": "https://api.altostrat.io/radius/users?per_page=25&cursor=eyJwayI6eyJT..."
  }
}

Authorizations

Authorization
string
header
required

Enter your API key in the format: Bearer <token>

Query Parameters

per_page
integer
default:25

The number of items to return per page.

Required range: 1 <= x <= 100
cursor
string

An opaque cursor for navigating to the next page of results.

Response

A paginated list of NAS devices.

data
object[]
pagination
object