Get Note Types

Purpose

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

Request Format

ZOHO.RECRUIT.API.getNoteTypes();

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.

Request Format

CopiedZOHO.RECRUIT.API.getNoteTypes().then(function(successResponse) {
    
}, function(errorResponse) {
    
});

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
    }
}