/record - Array Input Version
/record - Array Input Version
/record - Array Input Version
Bulk-delete one or more dataset records by supplying an array of record UUIDs in the request body. This is the preferred approach when you need to remove multiple records in a single API call.
This endpoint deletes one or more records from a dataset. Rather than targeting a single record via a path variable (as in DELETE /record/{record_uuid}), this variant accepts a JSON body containing a record_uuids array, making it possible to delete multiple records atomically in one request.
Authentication is handled automatically via a pre-request script that:
POSTs to {{url}}/token using the apiuser and apipass environment variables as credentials.
Stores the returned access token in the token variable.
Sends the token as a Bearer token in the Authorization header.
Ensure the url, apiuser, and apipass variables are set in your active environment before sending this request.
Content-Type: application/json
Example:
Multiple UUIDs can be included in the array to delete several records in a single request.
The authenticated user must have appropriate delete permissions for the target dataset records. Requests from users without sufficient permissions will be rejected.