Get Note Type

Purpose

To get a list of all note types in your Zoho Recruit account via API.

Request URL

https://recruit.zoho.com/recruit/v2/settings/note_types

Request Method

GET

Scope

scope=ZohoRecruit.settings.note_type.all

(or)

scope=ZohoRecruit.settings.note_type.{operation_type}

Possible operation types
ALL - Full data access
READ - Get note types

Parameters

NameData TypeValue RangeDescriptions
page (optional)IntegerRange: 1 to N
Default Value: 1

To get the list of records from the respective page.

per_page (optional)Integer

Range: 1 to 200
Default Value: 200

To get the list of records available per page.

 

Sample Response

Copied{
    "note_types": [
        {
            "name": "Call",
            "id": "21230000000054539",
            "is_default": true
        },
        {
            "name": "Cliq Notes",
            "id": "21230000000621032",
            "is_default": false
        },
        {
            "name": "Meeting",
            "id": "21230000000054541",
            "is_default": true
        },
        {
            "name": "Notes",
            "id": "21230000000054537",
            "is_default": true
        },
        {
            "name": "Others",
            "id": "21230000000054543",
            "is_default": true
        },
        {
            "name": "Test Note type",
            "id": "21230000000618007",
            "is_default": false
        }
    ],
    "info": {
        "per_page": 200,
        "count": 6,
        "page": 1,
        "more_records": false
    }
}