A profile instance defined in the system.
| Name | Type | Description |
|---|---|---|
| links | array of Link | Link to profile details using entities route |
| guid | string | GUID of the profile. |
| name | string | Name of the profile. |
| description | string | Description of the profile. |
| categoryName | string | Profile category name. |
| default | boolean | Whether this is a default profile for this category. If the profile is a default one for this category, it will be assigned to a user if a profile in this category was not already assigned to the user directly or via a group. Default profiles cannot be deleted or renamed. Not every category supports a default profile. |
| disabledPlatforms | array of string | Disabled platforms of the profile. Possible values: "android", "BB", "ios", "OSX", "WP" |
Example
{
"links" : [ {
"rel" : "groups",
"href" : "https://server01:18084/SRP00000/api/v1/users/6dd3a8e2-3f24-48c6-961a-949794f4b554/groups"
}, {
"rel" : "...",
"href" : "..."
} ],
"guid" : "3d55abd2-c00e-4f5f-abcf-01c92ac777b1",
"name" : "Sample Policy",
"description" : "Corporate profile",
"categoryName" : "IT_CONFIG",
"default" : true,
"disabledPlatforms" : [ "android", "ios" ]
}