API Guide
/api/TemplateService/Profiles(Id)
This URI represents a specific profile.
GET method for Profiles(Id)
This method returns the details of a specific profile.
Description Returns details of a specific profile.
Privilege VIEW
HTTP response
codes
200
Example
Input:
Output:
{
"@odata.context": "/api/$metadata#TemplateService.Profile/$entity",
"@odata.type": "#TemplateService.Profile",
"@odata.id": "/api/TemplateService/Profiles(44)",
"Id": 44,
"ProfileName": "Slot3",
"SourceTemplateId": 30,
"AssociatedEntityId": 25580,
"AssociationType": 1,
"Status": 3,
"CreatedBy": "root",
"CreationTime": "2018-09-10 06:15:11.535552",
"LastUpdatedBy": null,
"LastUpdatedTime": "2018-09-10 06:06:44.078863"
}
/api/TemplateService/Actions/
TemplateService.AssignIdentities
POST method for TemplateService.AssignIdentities
This method reserves virtual identities for target devices based on the configuration in a specified template. Identities are reserved from
the identity pool associated with the specified template.
Description
Reserves virtual identities for target devices.
Privilege TEMPLATE_MANAGEMENT
HTTP response
codes
200
Example
Input:
{
"TemplateId" : 13,
"BaseEntityIds" : [25010]
}
Output:
{
"IsSuccessful": true,
"ResultCode": 0,
"ResultMessage": "Operation successful.",
"Issues": []
}
Configure 151