Create an Equipment
Purpose
To create an equipment record.
Request URL
https://fsm.zoho.com/fsm/v1/Equipments
Request Method
POST
Scope
scope=ZohoFSM.modules.Equipment.CREATE
Input JSON Keys
Name | Description | Type | Mandatory |
Name | The name of the equipment. | String | Yes |
Description | A description for the equipment | String | |
Status | The status of the equipment. The possible values are Active, Inactive, Out of Service, Under Maintenance. If this parameter is not used, the Status value will default to Active. | String | |
Type | The type of the equipment. The possible values are Power Tools, Vehicle, Compactor. | String | |
Equipment_Serial_Number | The serial number of the equipment. The serial number will be unique to an equipment. | String | |
Equipment_Model_Number | The model number of the equipment. The model number identifies a category of equipment that is of the same model. | String | |
Warranty_Status | Indicate whether the warranty status of the equipment is Active or Expired. If this parameter is not used, the warranty status value will default to Active. | String | |
Warranty_Expired_Date | The warranty expiry date of the equipment. Provide the value in the format YYYY-MM-DD. | String | |
Purchased_Date | The purchase date of the equipment. Provide the value in the format YYYY-MM-DD. | String |
Sample Request
Copiedcurl --location --request POST 'https://fsm.zoho.com/fsm/v1/Equipments' \
--header 'Authorization: Zoho-oauthtoken 1000.26xxxxxxxxxx.xxxxxxxxxx0' \
--header 'content-type: application/json' \
-d "@createEquipment.json"
Sample Input
Copied{
"data": [
{
"Name": "Demolition 16 Kg Road Hammer Drill Machine",
"Description": "Electric model, 230V Single Phase",
"Status": "Active",
"Type": "Power Tools",
"Equipment_Serial_Number": "GBM",
"Equipment_Model_Number": "0-2600",
"Warranty_Status": "Active",
"Warranty_Expired_Date": "2010-04-01",
"Purchased_Date": "2025-04-01"
}
]
}
Sample Response
Copied{
"result": "success",
"code": "SUCCESS",
"data": {
"Equipments": [
{
"UID": "Equipments_0",
"Modified_Time": "2025-04-01T14:49:14+05:30",
"Modified_By": {
"name": "Marianne Sheehan",
"id": "1003000000208001"
},
"Created_Time": "2025-04-01T14:49:14+05:30",
"id": "1003000002506040",
"Created_By": {
"name": "Marianne Sheehan",
"id": "1003000000208001"
},
"TabName": "Equipments"
}
]
},
"status": "success"
}