Skip to main content

Edit an Estimate

Purpose

To update an estimate record.

Request URL

https://fsm.zoho.com/fsm/v1/Estimates/<record_id>

record_id - The unique ID of the record.

Request Method

PUT

Scope

scope=ZohoFSM.modules.Estimates.UPDATE

Sample Request

Copiedcurl --request PUT \
'https://fsm.zoho.com/fsm/v1/Estimates/4476553000000110073' \
--header 'Authorization: Zoho-oauthtoken 1000.2xxxxxxx.exxx' \
--header 'content-type: application/json' \
--data "@.json"

Sample Input

Copied{
    "data": [
        {
            "Expiry_Date":"2024-11-30",
            "Service_Line_Items": [
                {
                    "id": "1439000001377023",
                    "Quantity": 2,
                    "Part_Line_Items": [
                        {
                            "id": "1439000001377028",
                            "Quantity": 5
                        }
                    ]
                }
            ]
        }
    ]
}

Show full

Show less

Sample Response

Copied{
    "data": [
        {
            "code": "SUCCESS",
            "details": {
                "Modified_Time": "2024-11-25T16:31:56+05:30",
                "Modified_By": {
                    "name": "Mary Cooper",
                    "id": "1439000000161001"
                },
                "Created_Time": "2024-11-22T11:33:30+05:30",
                "id": "1439000001377012",
                "Created_By": {
                    "name": "Mary Cooper",
                    "id": "1439000000161001"
                }
            },
            "message": "record updated",
            "status": "success"
        }
    ]
}

Show full

Show less