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": "<string>",
      "nas_identifier": "<string>",
      "type": "<string>",
      "description": "<string>",
      "metadata": {}
    }
  ],
  "pagination": {
    "per_page": 123,
    "has_more": true,
    "next_cursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

per_page
integer
default:25
cursor
string

Response

200 - application/json

List of NAS devices.

data
object[]
pagination
object