| |||||
API Home >> Creator API >> REST API >> REST API Methods >> Update Record (Get Method)
Update Record (Get method)
| Field | Description |
| applicationName | The name of the application. |
| formName | The name of the form in the application. |
| recordID | The unique record id generated by Zoho Creator for each record in the form. |
| setColumnName | The column name to be updated. |
| newValue | The new value to be updated for this column. |
http://creator.zoho.com/api/test/xml/recruitment/Employee/4000000002208/update/
apikey=a14289d3322417901bea85df60f96101&Name=Vishal
<?xml version="1.0" encoding="UTF-8" ?>
<newvalues>
<field name="Name">
</newvalues>
<status>Success</status>
Form Name, Operation
Employee,update
Status,Criteria
Success,[ID EQUALS 2000000003003 SET Name = Vishal ]
{
"formname":
[
"Employee",
{
"operation":
[
"update",
{
"Criteria":
[
"ID
EQUALS 2000000003003"
]
},
{
"newvalues":
[
{
"Name":"Vishal"
}
]
},
{
"status":
[
"Success"
]
}
]
}
]
}
| Field | Description |
| applicationName | The name of the application. |
| formName | The name of the form in the application. |
| criteriaString | The criteria must be specified in the format "<criteria column name> <operator> <value>" where, <Criteria Column Name >: The column name used to specify the update criteria. <operator>:The operator used in the criteria. <value> : The criteria column value. |
| setColumnName | The column name to be updated. |
| newValue | The new value to be updated for this column. |
http://creator.zoho.com/api/test/xml/recruitment/Employee/update/matchall/
EmailId=Jessy@adventnet.com,DOB=05-Sep-1980/apikey=81d0d3fb0f81892ff681fb4e5c4efd2f&Hobbies=Reading
<?xml version="1.0" encoding="UTF-8" ?>
<newvalues>
</update>
Form Name, Operation
Employee,update
Status,Criteria
Success,[EmailId Equals Jessy@adventnet.com And DOB Equals 05-Sep-1980 SET Age = 25]
{
"formname":
[
"Employee",
{
"operation":
[
"update",
{
"Criteria":
[
"EmailId
Equals craig@adventnet.com And DOB Equals
05-Sep-1980"
]
},
{
"newvalues":
[
{
"Hobbies":"Reading"
}
]
},
{
"status":
[
"Success"
]
}
]
}
]
}
| Field | Description |
| applicationName | The name of the application. |
| formName | The name of the form in the application. |
| criteriaString | The criteria must be specified in the format "<criteria column name> <operator> <value>" where, <Criteria Column Name >: The column name used to specify the delete criteria. <operator>:The operator used in the criteria. <value> : The criteria column value. |
| setColumnName | The column name to be updated. |
| newValue | The new value to be updated for this column. |
http://creator.zoho.com/api/test/xml/Sample_Application/Employee_Form/update/matchany/Name=Henry,Age=23/
apikey=a71b267fd787f9954db3ae42b20bd09b&Age=25
<?xml version="1.0" encoding="UTF-8" ?>
Form Name, Operation
Employee,update
Status,Criteria
Success,[EmailId Equals kevin@gmail.com Or DOB Equals 05-Sep-2007 SET Hobbies = Reading ]
{
"formname":
[
"Employee",
{
"operation":
[
"update",
{
"Criteria":
[
"EmailId Equals lindsay@yahoo.com Or DOB Equals 05-Sep-2007"
]
},
{
"newvalues":
[
{
"Hobbies":"Reading"
}
]
},
{
"status":
[
"Success"
]
}
]
}
]
}