Skip to main content
GET
/
api
/
sys
/
radiusservers
/
{id}
Get one RadiusServer
curl --request GET \
  --url https://spaces.nexudus.com/api/sys/radiusservers/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "BusinessId": 123,
  "Name": "<string>",
  "Vendor": 123,
  "Active": true,
  "Description": "<string>",
  "CustomerId": "<string>",
  "NetworkId": "<string>",
  "CaptivePortalId": "<string>",
  "SplashPageId": "<string>",
  "RadiusIp1": "<string>",
  "RadiusIp2": "<string>",
  "AccountPort": "<string>",
  "AuthPort": "<string>",
  "SharedSecret": "<string>",
  "Id": 123,
  "UniqueId": "<string>",
  "CreatedOn": "<string>",
  "UpdatedOn": "<string>",
  "UpdatedBy": "<string>",
  "IsNew": true,
  "SystemId": "<string>"
}
A RadiusServer configures a RADIUS authentication server used for Wi-Fi access control. Each server defines the vendor type, connection settings, and shared secret for authenticating customer devices on the network.

Authentication

This endpoint requires OAuth2 authentication. Include a valid bearer token in the Authorization header. The authenticated user must be a full unrestricted administrator or have the RadiusServer-Read role.

Path Parameters

id
integer
required
The Id of the RadiusServer record to retrieve.

Code Examples

curl -X GET \
  "https://spaces.nexudus.com/api/sys/radiusservers/87654321" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response

200

BusinessId
integer
ID of the business linked to this record.
Name
string
The name value for this radius server.
Vendor
integer
The vendor value for this radius server. See eRadiusServerVendor enum values: 0 = Aerohive_Networks, 1 = Alcatel_Lucent, 2 = Aruba_Instant, 3 = Aruba_Mobility_Controller, 4 = Avaya, 5 = Bluesocket, 6 = Casa_Systems, 7 = ChilliSpot, 8 = CoovaChilli, 9 = Cisco_Systems, 10 = Dell, 11 = EnGenius, 12 = ExtremeWireless, 13 = FortiGate, 14 = ICC, 15 = LigoWave, 16 = Meraki_Sign_On, 17 = Meraki_ClickThrough, 18 = Meru_Networks, 19 = MikroTik, 20 = Motorola, 21 = Mojo_Networks, 22 = Open_Mesh_Cloudtrax, 23 = pfSense, 24 = Peplink, 25 = Ruckus_Wireless, 26 = Ruckus_Virtual_SZ, 27 = SonicWall, 28 = Ubiquiti_Networks, 29 = TP_Link_EAP, 30 = Trapeze_Wireless, 31 = Trendnet, 32 = Xirrus, 33 = Virtual_Controller, 34 = Other.
Active
boolean
Whether this radius server is currently active.
Description
string
Free-text description of this radius server.
CustomerId
string
ID of the customer associated with this record.
NetworkId
string
ID of the network associated with this record.
CaptivePortalId
string
ID of the captive portal associated with this record.
SplashPageId
string
ID of the splash page associated with this record.
RadiusIp1
string
The radius ip1 value for this radius server.
RadiusIp2
string
The radius ip2 value for this radius server.
AccountPort
string
The account port value for this radius server.
AuthPort
string
The auth port value for this radius server.
SharedSecret
string
The shared secret value for this radius server.
Id
integer
Unique record identifier.
UniqueId
string
UUID of the record.
CreatedOn
string
Date and time the record was created (ISO 8601).
UpdatedOn
string
Date and time the record was last updated (ISO 8601).
UpdatedBy
string
Email of the user who last updated this record.
IsNew
boolean
Whether the record was recently created.
SystemId
string
External system identifier.
Example Response
{
  "BusinessId": 0,
  "Name": "",
  "Vendor": 0,
  "Active": false,
  "Description": null,
  "CustomerId": null,
  "NetworkId": null,
  "CaptivePortalId": null,
  "SplashPageId": null,
  "RadiusIp1": null,
  "RadiusIp2": null,
  "AccountPort": null,
  "AuthPort": null,
  "SharedSecret": null,
  "Id": 87654321,
  "UpdatedOn": "2025-01-15T10:30:00Z",
  "CreatedOn": "2025-01-10T08:00:00Z",
  "UniqueId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "UpdatedBy": "admin@example.com",
  "IsNew": false,
  "SystemId": null,
  "ToStringText": "RadiusServer Example",
  "LocalizationDetails": null,
  "CustomFields": null
}