Delete

Delete Entries

DELETE {{host}}/api/rest/v4/data/entrydata/{{entryTypeId}}

Deletes entries.

If you simply want to remove a value from a field, you can use the endpoints for updating an entry and pass null or "" for the value of the field. This endpoint will delete the entire record.

Params

nameParameter TypeData TypeValuesDescription
entryTypeIdpathint or string2011 or companythe entry type you'd like to delete a entry from
-bodyArray[integer][3045228, 304522]Entry Ids of the records to delete

Examples

Request

DELETE {{host}}/api/rest/v4/data/entrydata/{{entryTypeId}}
Content-Type: application/json
Authorization: Bearer {{token}}
 
[3045228]

Response

200 OK
[
  {
    "entryId": 3045228,
    "fieldId": 0,
    "rowId": 3045228,
    "isNoData": false
  }
]

Verify Deletion

You can verify deletion by checking the History or All History endpoints. If the entry was deleted, you will see that the entry was modified and isDeleted is true.

200 Ok
[
  {
    "isDeleted": true,
    "id": 3045228,
    "name": "Delete Interaction",
    "entryListId": 2013
  }
]