Work Types APIs

Work Type is a template for the services in a work order. Use these templates to add the service details to the work orders quickly and to avoid repetitive data entry.

List Work Types

Purpose

To fetch the list of all work types.

Request URL

https://fsm.zoho.com/fsm/v1/Work_Types

Request Method

GET

Scope

scope=ZohoFSM.modules.ALL

Sample Request

Copiedcurl --request GET 'https://fsm.zoho.com/fsm/v1/Work_Types'\
--header 'Authorization: Zoho-oauthtoken 1000.xxxxxx.xxxxxxe'

Sample Response

Copied{
    "data": [
        {
            "Owner": {
                "name": "Lucy Robins",
                "id": "1003000000208001",
                "email": "lucy.robins@zylker.com"
            },
            "Modified_Time": "2023-04-04T16:59:13+05:30",
            "Description": null,
            "$currency_symbol": "$",
            "Estimated_Time_Unit": "Hours",
            "Created_Time": "2023-04-04T16:59:13+05:30",
            "$editable": true,
            "isActive": true,
            "$permissions": {
                "read": true,
                "edit": true,
                "delete": true
            },
            "Name": "Home Painting",
            "Modified_By": {
                "name": "Lucy Robins",
                "id": "1003000000208001",
                "email": "lucy.robins@zylker.com"
            },
            "Exchange_Rate": 1,
            "Estimated_Time": "6",
            "Currency": "USD",
            "$inactive": false,
            "id": "1003000000625001",
            "Created_By": {
                "name": "Lucy Robins",
                "id": "1003000000208001",
                "email": "lucy.robins@zylker.com"
            }
        }
    ],
    "info": {
        "per_page": 200,
        "count": 1,
        "page": 1,
        "more_records": false
    }
}