Scheduled Maintenance APIs

With Scheduled Maintenances, Zoho FSM will help you manage work that is regularly scheduled and repeated over a period of time.

List Scheduled Maintenances

Purpose

To fetch the list of all scheduled maintenances.

Request URL

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

Request Method

GET

Scope

scope=ZohoFSM.modules.ScheduledMaintenances.READ

Parameters

Parameter NameData TypeDescriptionPossible Values
page (optional)IntegerTo get the list of records from the respective pages. Default value for page is 1.Positive Integer values only
per_page (optional)IntegerTo get the list of records available per page. Default value for page is 200.Positive Integer values only

Sample Request

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

Sample Response

Copied{
    "data": [
        {
            "Status": "Active",
            "Owner": {
                "name": "Diane Lockhart",
                "id": "2993000000294001",
                "email": "lucy.robins@zylker.com"
            },
            "Modified_Time": "2023-12-20T16:34:45+05:30",
            "Description": null,
            "Created_Time": "2023-12-20T16:31:58+05:30",
            "$editable": true,
            "$permissions": {
                "read": true,
                "edit": true,
                "delete": true
            },
            "Name": "Landscaping services for Acme Inc",
            "Modified_By": {
                "name": "Diane Lockhart",
                "id": "2993000000294001",
                "email": "lucy.robins@zylker.com"
            },
            "Batch": {
                "Batch_Interval": null,
                "Batch_Type": "SAME_DAY"
            },
            "Schedule": {
                "By_Day": null,
                "By_Dates": null,
                "By_Week": null,
                "Frequency": "Weekly",
                "Interval": 1,
                "By_Days": "7"
            },
            "$inactive": false,
            "id": "2993000000321010",
            "Created_By": {
                "name": "Diane Lockhart",
                "id": "2993000000294001",
                "email": "lucy.robins@zylker.com"
            },
            "Last_Generated_Time": null,
            "Next_Generation_Time": "2023-12-24T10:30:00+05:30"
        },
        {
            "Status": "Active",
            "Owner": {
                "name": "Diane Lockhart",
                "id": "2993000000294001",
                "email": "lucy.robins@zylker.com"
            },
            "Modified_Time": "2023-10-05T19:31:54+05:30",
            "Description": "Cleaning the condenser coils, checking and replacing filters, inspecting and lubricating moving parts",
            "Created_Time": "2023-10-05T19:31:54+05:30",
            "$editable": true,
            "$permissions": {
                "read": true,
                "edit": true,
                "delete": true
            },
            "Name": "Monthly AC Maintenance",
            "Modified_By": {
                "name": "Diane Lockhart",
                "id": "2993000000294001",
                "email": "lucy.robins@zylker.com"
            },
            "Batch": {
                "Batch_Interval": 1,
                "Batch_Type": "DAYS_BEFORE"
            },
            "Schedule": {
                "By_Day": "Monday",
                "By_Dates": null,
                "By_Week": "First",
                "Frequency": "Monthly",
                "Interval": 3,
                "By_Days": null
            },
            "$inactive": false,
            "id": "2993000000303025",
            "Created_By": {
                "name": "Diane Lockhart",
                "id": "2993000000294001",
                "email": "lucy.robins@zylker.com"
            },
            "Last_Generated_Time": "2023-12-03T10:30:00+05:30",
            "Next_Generation_Time": "2024-03-03T10:30:00+05:30"
        }
    ],
    "info": {
        "per_page": 200,
        "count": 2,
        "page": 1,
        "more_records": false
    }
}