Add batch operations

Using the batch operations API, you can bulk delete records from a form or update project, assignee, or status values on multiple records.

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
Credentials
Header
URL
Click Try It! to start a request and see the response here!