_delete
Delete multiple selected Customers.
Parameters
ids
An array of the ids of the Customers to be deleted
Example
=FM_api(
'Customers_delete',[
'ids' => '[653150,653151]'
]
);
Results
On Success
{"ok":1}
On Failure
If there is no "ids" parameter:
{"error":"missing parameter: ids"}
If the "ids" value is not in an array format:
{"error":"invalid parameter: ids"}
Last updated