Skip to main content

Multiple Records Deletion API

You can delete multiple records through the API.

Updated over 10 months ago

What is the Multiple Records Deletion API?

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 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
}


I have finished reading. 🏆

👉I can't wait to SET THE API.

👉I need more HELP in Discord Forum.

Did this answer your question?