Get All Profiles

Purpose

To get a list of all profiles in your account using Widget API.

Request Format

ZOHO.RECRUIT.API.getAllProfiles()

Sample Request

CopiedZOHO.RECRUIT.API.getAllProfiles().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": "12909000000054127",
           "is_custom": false,
           "created_by": null
       },
       {
           "created_time": null,
           "modified_time": null,
           "name": "Standard",
           "modified_by": null,
           "description": "Can manage end-to-end hiring processes in the organization.",
           "id": "12909000000054129",
           "is_custom": false,
           "created_by": null
       },
       {
           "created_time": null,
           "modified_time": null,
           "name": "Guest",
           "modified_by": null,
           "description": "Can only make interview decisions scheduled to them and log activities to any data",
           "id": "12909000000054131",
           "is_custom": false,
           "created_by": null
       },
       {
           "created_time": null,
           "modified_time": null,
           "name": "Interviewer",
           "modified_by": null,
           "description": "Can only make interview decisions scheduled to them",
           "id": "12909000000054133",
           "is_custom": false,
           "created_by": null
       }
   ]
}