Get SSID Profile References in Device Templates
The API provides SSID profile references in the device template. This information can be used by API client to show SSID profile usage information before delete operation.
API Calls
/V5/configuration/ssidprofiles/{templateid}/references
JSON Table
Attribute | Data Type | Description |
---|---|---|
templateId | Long | Device template ID in which the SSID profile is used. |
templateType | Enum | Template type. Applicable value, DEVICE_TEMPLATE. |
templateName | String | Name of the device template. |
createdAtLocationId | application/json | Location Id at which template is created. The value is of the type Location ID JSON. |
defaultTemplate | boolean | The boolean value representing whether the template is default at any location. |
unUsedTemplate | boolean | The Boolean value represents whether the template is used at any location. |
managedDeviceUsingSSID | String | A List of managed device mac addresses where SSID profile is active. |
defaultAtLocationIds | application/json | List of locationIds where the template is marked default. The value is of the type Location ID JSON. |
Sample JSON
[{ "templateId": 6, "templateType": "DEVICE_TEMPLATE", "templateName": "Test2.1", "createdAtLocationId": { "type": "locallocationid", "id": 3 }, "defaultTemplate": true, "unUsedTemplate": false, "managedDeviceUsingSSID": "AA:AA:AA:AA:AA:AA", "defaultAtLocationIds": { "type": "locallocationid", "id": 3 } }]