Delete Record by ID
This API deletes a specific record, identified by its ID value, which is displayed in a report of your ManageEngine AppCreator application. The delete request is subject to custom validations configured for the target form.
Request URL
https://<base_url>/api/v2/<account_owner_name>/<app_link_name>/report/<report_link_name>/<record_ID>
Request method
DELETE
Header
Key | Value | Description |
Authorization | Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf | An authentication token (authtoken) allows users to access apps and APIs without having to enter their login credentials each time. |
OAuth scope
scope=ManageEngine AppCreator.report.DELETE
where,
base_url | the base URL of your Creator account For example, the base URL is either https://host_name:port_number (learn more) or appcreatordemo.manageengine.com (hostname of the server where ManageEngine AppCreator is running).. |
account_owner_name | the username of the Creator account's owner |
app_link_name | the link name of the target application |
report_link_name | the link name of the target report |
record_ID | the ID of the record that you want to delete |
Understanding the response
The success or failure of the API will be conveyed in its response. The response of the Delete Record by ID API includes the following keys:
- code
This key denotes the success or failure of the delete operation. Refer to this page for the complete list of codes and messages.
- message
- When the API request includes "message": true, the response will contain "message":"Data Deleted Successfully" or the message that's configured as part of a show message workflow action
- When the API request includes "message": false or does not include this the message key, the response will contain "message":"Data Deleted Successfully"
- data
This key will contain the ID of the deleted record.
- tasks
When the API request includes this key with value true, the response will return the details of the form, report, page, or URL to which the target form is configured to redirect to upon successful deletion record deletion. Redirection can be set up using a redirection workflow action. The "type" key will contain the type of window in which the target URL is to open (same window, new window, or parent window). The "url" key will contain one of the following, for example:
- #Form:<form_link_name>
- #Report:<report_link_name>
- #Page:<page_link_name>
- https://www.zylker.com
Possible Errors
Refer to this page for the list of error codes and messages.
Sample Request
Copiedcurl "https://appcreatordemo.manageengine.com/api/v2/jason18/zylker-store/report/All_Orders/3888833000000114027"
-X DELETE
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"
This sample request will delete the record with ID 3888833000000114027, which is displayed in the All Orders report of the Zylker Store application.
Sample Input
Copied{
"result": {
"message": true,
"tasks": true
}
}
Sample Response
Copied{
"code": 3000,
"data": {
"ID": 3888833000000114027
},
"message": "Record Deleted Successfully!"
}