Zoho Recruit | getNoteTypes Method

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

XML Format:

JSON Format:

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
call ALL - 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.
URL Format:
https://recruit.zoho.com/recruit/private/xml/Notes/getNoteTypes?authtoken=AuthToken&version=2
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>