Record Templates APIs
List Record Templates
Purpose
To fetch the list of all available record templates. The records fetched will be sorted by Created Time in descending order (recent ones first).
Request URL
https://fsm.zoho.com/fsm/v1/settings/recordTemplate
Request Method
GET
Scope
scope=ZohoFSM.meta.templates.record.READ
Query Parameters
Parameter Name | Data Type | Description | Possible Values |
page (optional) | Integer | The page from which you want to fetch the records. The default value is 1. | Positive Integer values only |
per_page (optional) | Integer | The number of records you want to fetch in a page. The default value is 200. | Positive Integer values only |
Sample Request
Copiedcurl --request GET 'https://fsm.zoho.com/fsm/v1/settings/recordTemplate' \
--header 'Authorization: Zoho-oauthtoken 1000.3xxxxxxxxx.xxxxxxxxxxxxx0e'
Sample Response
Copied{
"record_template": {
"data": [
{
"Description": "Debris removal with scrubbing",
"Created_Time": "2024-06-26 11:09:59.0",
"id": "1003000001684007",
"Created_By": {
"name": "Marianne Sheehan",
"id": 1003000000208001
},
"Name": "Combo Offer I"
},
{
"Description": "Chrome plating landing gear components",
"Created_Time": "2024-06-24 06:48:19.0",
"id": "1003000001669025",
"Created_By": {
"name": "Marianne Sheehan",
"id": 1003000000208001
},
"Name": "Chrome plating landing gear"
}
],
"hasNextPage": false
}
}