getNoteTypes

getNoteTypes

Purpose

You can use this method to get the list of note types in Zoho Recruit.
Note: Use the POST method to pass these parameters instead of GET method.

Request URL

For OAuth Authentication

Header Name
Value
Authorization
Zoho-oauthtoken {access_token}

Scopes

Scope=ZohoRecruit.modules.call.all
(or)
Scope=ZohoRecruit.modules.{scope_name}.{operation_type}
Possible Scope Names (Case Sensitive)
Operation Types
callALL - Full access to the record
READ - Get records from the module

For Authtoken Authentication

Parameter
Data Type
Description
authtoken*
String
Encrypted alphanumeric string to authenticate your Zoho credentials. 
scope*
String
Specify the value as recruitapi

Request Parameters

Parameter
Data Type
Description
version*
Integer
Use version=2: This will fetch responses based on the latest API implementation.
Note: Parameters marked with * are mandatory.

Example

To get the list of note types in Zoho Recruit.
Response Format:
<response uri="/recruit/private/xml/Notes/getNoteTypes">
<result>
<Notes>
<row no="1">
<FL val="Note Type">
<![CDATA[ Call ]]>
</FL>
<FL val="Note Id">
<![CDATA[ 300443000000072355 ]]>
</FL>
<FL val="Is System">
<![CDATA[ true ]]>
</FL>
</row>
<row no="2">
<FL val="Note Type">
<![CDATA[ Meeting ]]>
</FL>
<FL val="Note Id">
<![CDATA[ 300443000000072357 ]]>
</FL>
<FL val="Is System">
<![CDATA[ true ]]>
</FL>
</row>
<row no="3">
<FL val="Note Type">
<![CDATA[ Notes ]]>
</FL>
<FL val="Note Id">
<![CDATA[ 300443000000072353 ]]>
</FL>
<FL val="Is System">
<![CDATA[ true ]]>
</FL>
</row>
<row no="4">
<FL val="Note Type">
<![CDATA[ Others ]]>
</FL>
<FL val="Note Id">
<![CDATA[ 300443000000072359 ]]>
</FL>
<FL val="Is System">
<![CDATA[ true ]]>
</FL>
</row>
</Notes>
</result>
</response>

    • Related Articles

    • API Methods

      Method Name Purpose getRecords To retrieve all users data specified in the API request getRecordById To retrieve individual records by record ID addRecords To insert records into the required Zoho Recruit module updateRecords To update or modify the ...
    • addRecords

      Purpose You can use the addRecords method to insert records into the required Zoho Recruit module. Note: Use the POST method to pass these parameters instead of the GET method. Request URL XML Format: ...