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

Get SSID Profile References in Device Templates

Description Provides SSID profile references in the specified device template.
Who Can Execute? Superuser, Administrator, and Operator.
Syntax
GET <Base_URL>/configuration/ssidprofiles/{templateid}/references
Sample code
GET https://training.mojonetworks.com/new/webservice/V5/configuration/ssidprofiles/38
/references
Request Body This API call does not require any request body parameters.
Response Body If the API call is successful, the HTTP response status is 200.
The response body contains SSID profile 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
	}
}]