| |||||
API Home >> Creator API >> REST API >> REST API Methods >> Delete Record (Get Method)
Delete 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. |
http://creator.zoho.com/api/xml/recruitment/Employee/2000000003003/delete/
apikey=a14289d3322417901bea85df60f96101
<?xml version="1.0" encoding="UTF-8" ?>
<response>
<result>
<form name="Employee">
<delete>
<criteria>
<fieldname="ID" compOperator="EQUALS" value="2000000003003"/>
</criteria>
<status>Success</status>
</delete>
</form>
</result>
</response>
Form Name, Operation
Employee,delete
Status,Criteria
Success,[ID EQUALS 2000000003003]
{
"formname":
[
"Employee",
{
"operation":
[
"delete",
{
"Criteria":
[
"ID EQUALS 2000000003003"
]
},
{
"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. The following operators are supported:
|
http://creator.zoho.com/api/test/xml/recruitment/Employee/delete/matchall/Name=Jessy,Hobbies=Writing/
apikey=a14289d3322417901bea85df60f96101
<?xml version="1.0" encoding="UTF-8" ?>
<response>
<result>
<form name="Employee">
<delete>
<criteria>
<fieldname="Name" compOperator="EQUALS" value="Jessy"/>
<reloperator>And</reloperator>
<fieldname="Hobbies" compOperator="Equals" value="Writing" />
</criteria>
<status>Success</status>
</delete>
</form>
</result>
</response>
Form Name, Operation
Employee,delete
Status,Criteria
Success,[Name Equals Henry And Hobbies Equals Reading]
{"formname":["Employee",{"operation":["delete",{"Criteria":["Name Equals Henry And ID Equals 2000000000323"]},{"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. The following operators are supported:
|
http://creator.zoho.com/api/test/xml/recruitment/Employee/delete/matchany/HRA_Eligibility=true,Basic<15000/
apikey=a14289d3322417901bea85df60f96101
The following is the XML response for the above request:
Form Name, Operation
Employee,delete
Status,Criteria
Success,[Basic LessThan 15000 Or HRA_Eligibility Equals true]
{
"formname":
[
"Employee",
{
"operation":
[
"delete",
{
"Criteria":
[
"Basic LessThan 15000 Or HRA_Eligibility Equals true"
]
},
{
"status":
[
"Success"
]
}
]
}
]
}