Update Note Type

Purpose

To update a note type in your Zoho Recruit account via API.

Request URL

https://recruit.zoho.com/recruit/v2/settings/note_types/{note_type_id}

{note_type_id} - The unique ID of the note type

Request Method

PUT

Scope

scope=ZohoRecruit.settings.note_type.all

(or)

scope=ZohoRecruit.settings.note_type.{operation_type}

Possible operation types
ALL - Full data access
UPDATE - Update tag data

Possible Errors

HTTP StatusErrorMessageReason
202DUPLICATE_DATAAll or some of the note types exist alreadyThe note type already exists. Try using a different name.
403NO_PERMISSIONThe user doesn't have the Customize Zoho Recruit permissionThe user does not have permission to upload files. Contact your system administrator
400INVALID_DATAInvalid data in body parameter. Check input data formatThe data type used in the body of the request is invalid.

 

Sample Input

Copied{  
    note_types:[
         {    
   name:"Conference Call"
        }
          ]    
}

{
   "note_types": [
       {
           "code": "SUCCESS",
           "details": {
               "created_time": "2020-09-21T00:17:10+05:30",
               "modified_time": "2020-10-12T19:29:50+05:30",
               "modified_by": {
                   "name": "Patricia Boyle",
                   "id": "100001000000021464"
               },
               "name": "Conference Call",
               "id": 100001000000029010,
               "created_by": {
                   "name": "Patricia Boyle",
                   "id": "100001000000021464"
               }
           },
           "message": "note type updated successfully",
           "status": "SUCCESS"
       }
   ]
}