Add batch operations

Using the batch operations API, you can bulk delete records from a form.

POST /api/v2/batch/:id/operations

{  
  "operations": [  
    {  
      "action": "delete",  
      "resource": "record",  
      "query": "select \_record_id as id from \"{{formId}}\" where \_status = 'Approved'",  
    },  
    {  
      "action": "delete",  
      "resource": "record",  
      "ids": [ "{{recordId0}}", "{{recordId1}}" ],  
    }  
  ]  
}
Language
Authorization
Header
Click Try It! to start a request and see the response here!