deleteArr()
Purpose
For native Platform objects, this method moves the specified array of records to the Recycle Bin. This method increments the hits counter for each array element.
Syntax
deleteArr(string sessionId, LongArr ids);
Parameters
sessionId
A string containing the session ID obtained at log in.
ids
LongArr array of record ids to be deleted.
Output
None
Permissions Required
Delete permission for the requested object type.
Example
long[] ids = new long[] { 123456, 123457 };
binding.deleteArr(sessionId, new LongArr(ids));