Get a Job Sheet Record

Purpose

All the job sheet forms associated with the services added to a service appointment will be listed as job sheet records under the Job sheets tab of service appointments. Use this API to fetch the details of a specific job sheet record that is in the Draft or Completed status.

Request URL

https://fsm.zoho.com/fsm/v1/Job_Sheets/<job_sheet_record_id>

job_sheet_record_id - The unique ID of the job sheet record. You can obtain this ID from the Get Job Sheet Records of a Service Appointment API.

Request Method

GET

Scope

scope=ZohoFSM.modules.JobSheets.READ

Sample Request

Copiedcurl --request GET 'https://fsm.zoho.com/fsm/v1/Job_Sheets/1003000001862042' \
--header 'Authorization: Zoho-oauthtoken 1000.3xxxxxxxxx.xxxxxxxxxxxxx0e'

Sample Response

Copied{
    "data": [
        {
            "Owner": {
                "name": "Marianne Sheehan",
                "id": "1003000000208001",
                "email": "marianne@noemail.com"
            },
            "Description": "Low water pressure in bathroom",
            "Final_Pressure_Reading_in_psi__C": "4",
            "Identify_Affected_Areas__C": [
                "Bathroom faucet"
            ],
            "Consistent_Water_Flow_Confirmed__C": true,
            "Name": "LWPRJS0009",
            "Comparison_To_Normal_Range__C": 4,
            "Modified_By": {
                "name": "Marianne Sheehan",
                "id": "1003000000208001",
                "email": "marianne@noemail.com"
            },
            "Main_Water_Valve_Status__C": "Fully Open",
            "Initial_Pressure_Reading_in_psi__C": 3,
            "$inactive": false,
            "Service_Appointment": {
                "name": "AP-87",
                "id": "1003000002258220"
            },
            "id": "1003000002532318",
            "Replacements__C": null,
            "All_Faucets_And_Fixtures_Tested__C": true,
            "Clogged_Aerators_Present__C": false,
            "Status": "Draft",
            "Pressure_Regulator_Status__C": "Functioning",
            "Modified_Time": "2025-04-10T02:41:24+05:30",
            "Created_Time": "2025-04-10T02:41:24+05:30",
            "$editable": true,
            "Date__C": "2025-04-10",
            "Mineral_Buildup_On_Showerheads__C": true,
            "$permissions": {
                "read": true,
                "edit": true,
                "delete": true
            },
            "Clog_Removal__C": [
                "Cleared clogs in main line",
                "Cleaned aerators and showerheads"
            ],
            "Damaged_Components__C": null,
            "Location_Of_Test__C": null,
            "Layout": {
                "name": "Low Water Pressure Repair Job Sheet",
                "id": "1003000001935912"
            },
            "Jobsheet_X_Services": [
                {
                    "Service_Task_Line_Item": null,
                    "Owner": {
                        "name": "Marianne Sheehan",
                        "id": "1003000000208001",
                        "email": "marianne@noemail.com"
                    },
                    "Modified_Time": "2025-04-10T02:41:24+05:30",
                    "Created_Time": "2025-04-10T02:41:24+05:30",
                    "Jobsheet": {
                        "name": "LWPRJS0009",
                        "id": "1003000002532318"
                    },
                    "$editable": true,
                    "$permissions": {
                        "read": true,
                        "edit": true,
                        "delete": true
                    },
                    "Name": "JSxSRVC-19",
                    "Modified_By": {
                        "name": "Marianne Sheehan",
                        "id": "1003000000208001",
                        "email": "marianne@noemail.com"
                    },
                    "$inactive": false,
                    "Service_Line_Item": {
                        "name": "SVC-149",
                        "Service": "1003000001935861",
                        "id": "1003000002532293"
                    },
                    "id": "1003000002532325",
                    "Created_By": {
                        "name": "Marianne Sheehan",
                        "id": "1003000000208001",
                        "email": "marianne@noemail.com"
                    }
                }
            ],
            "Created_By": {
                "name": "Marianne Sheehan",
                "id": "1003000000208001",
                "email": "marianne@noemail.com"
            },
            "Check_for_Recent_Changes__C": [
                "Plumbing work done",
                "Changes in water usage"
            ]
        }
    ]
}