Multiple Records Deletion APIAPI Explorer
Introduction
API Introduction
You can delete multiple records through the API.
Note:
A maximum of 100 records can be deleted at a time.
API Calling
Delete multiple records from the form according to the specified data ID.
Request URL: https://api.jodoo.com/api/v5/app/entry/data/batch_delete
Request Frequency: ten times per second
Request Method: POST
Request Parameters:
Parameter | Required | Type | Description |
app_id | Yes | String | App ID |
entry_id | Yes | String | Form ID |
data_ids | Yes | String[] | IDs of the data to be deleted |
Sample Request:
{
"app_id": "59264073a2a60c0c08e20bfb",
"entry_id": "59264073a2a60c0c08e20bfd",
"data_ids": [
"200001181fe09728936510eb",
"200001181fe09728936510ec",
"200001181fe09728936510ed"
]
}
Responses:
Parameter | Type | Description |
status | String | Return 'success' if successful |
success_count | number | The number of data successfully deleted |
Sample Response:
{
"status": "success",
"success_count": 3
}