How do I document WLAN (access points)?
Requires Basic
Add an access point Response (201 Created) Add a WLAN/mesh group
Quick answer
Section titled “Quick answer”In the Network module, switch to the WLAN tab and add an access point. Required are a name and the SSID. Optionally, you can add a location, a MAC address, the linked IP address, and a WLAN group (e.g. for mesh setups).
Prerequisites
Section titled “Prerequisites”Included in all plans from Basic onward.
Instructions
Section titled “Instructions”-
Open the “WLAN” tab. Choose Network, then the WLAN tab. Click Add.
Screenshot pendingnetzwerk-wlan-01The 'WLAN' tab in the Network module with the form for a new access pointThe 'WLAN' tab — this is where you document access points and mesh groups. -
Fill in the access point.
- Name — e.g. “AP-Ground-Floor-Reception”
- SSID — the broadcast network name, e.g. “TougeTech-Corp”
- Location (optional) — e.g. “Ground floor, reception”
- MAC address (optional)
- IP address (optional) — chosen from your recorded IP addresses
- WLAN group (optional) — for mesh networks
For a mesh network, first create a WLAN group and set the Mesh flag on it.
-
Save. The access point appears in the list, sorted by name.
Via the REST API: a POST to /api/v1/network/wifi. Required are name and ssid.
curl -X POST https://demo.notory.io/api/v1/network/wifi \ -H "Authorization: Bearer inv_dein_token" \ -H "Content-Type: application/json" \ -d '{ "name": "AP-EG-Empfang", "ssid": "TougeTech-Corp", "location": "Erdgeschoss, Empfang", "mac_address": "a4:83:e7:1c:9f:20" }'{ "id": "0190f3a2-9f44-7ebc-c3d5-4f7a8b9c0d13", "tenant_id": "3d9b0c12-4e5a-4f88-b1c7-2a9e6d4f0011", "name": "AP-EG-Empfang", "ssid": "TougeTech-Corp", "location": "Erdgeschoss, Empfang", "mac_address": "a4:83:e7:1c:9f:20", "ip_address_id": null, "group_id": null, "created_at": "2026-07-08T09:35:00Z", "updated_at": "2026-07-08T09:35:00Z"}You create a WLAN group (with the mesh flag) separately:
curl -X POST https://demo.notory.io/api/v1/network/wlan-groups \ -H "Authorization: Bearer inv_dein_token" \ -H "Content-Type: application/json" \ -d '{ "name": "Campus-Mesh", "is_mesh": true }'Possible errors: 401, 403 (permissions/role), 422 (empty name or ssid).
What happens behind the scenes?
Section titled “What happens behind the scenes?”- Tenant assignment: The access point and the WLAN group belong to your current tenant.
- Links: If an access point references an IP address or a WLAN group and that
record is deleted, Notory sets the respective link to
null(SET NULL) — the access point is retained. - Mesh: The Mesh flag is a property of the WLAN group, not of the individual access point — several access points in the same mesh group together form a mesh network.
- Documentation only: Notory doesn’t configure any devices; the entries document your WLAN landscape only.