Get Profile
Purpose
To get the details of a specific profile in your account using Widget API.
Request Format
ZOHO.RECRUIT.API.getProfile({
"ID": "{profile_id}"
});
Sample Request
CopiedZOHO.RECRUIT.API.getProfile({
"ID": "14636000000054127"
}).then(function(successResponse) {
}, function(errorResponse) {
});
Sample Response
Copied{
"profiles": [
{
"created_time": null,
"modified_time": null,
"name": "Administrator",
"modified_by": null,
"description": "Complete control over hierarchy set up and data permissions across the organization.",
"id": "14636000000054127",
"is_custom": false,
"created_by": null
}
]
}