Let the platform do the work

//MassUpdate DELETE

Overview

An API to mass delete records.

Query String Parameters

Name Type Description Required
massupdate_params Array Mass update parameters. True
massupdate_params.uid Array A list of ids. True

Request

Mass Deleting Records by ID in a Module

{
    "massupdate_params":{
        "uid":[
            "ebf22b86-94ea-1601-4f4f-512d09173438",
            "e3b71c55-d96b-80bb-1696-512d09672398"
        ]
    }
}

Response Arguments

Name Type Description
Status String The status of the mass update. Possible value is 'done'.

Output Done Example

{
    "status":"done"
}

Change Log

Version Change
v10 Added /<module>/MassUpdate DELETE endpoint.