Usage
Use DeleteBudgetItem to delete a Budget Item from an event.
Basic Steps
- Determine the ID of the BudgetItems you want to delete.
- Construct a CvObject array and populate it with the IDs of each user you want to delete.
- Optionally, specify the MessageId if you need to track the result of each record. Message IDs can represent unique identifiers from your system. Message IDs will be returned as Reference IDs in the result array for your tracking purposes.
- Call DeleteBudgetItem, passing in the ID array.
- Process the results in the DeleteBudgetItemResultArray object to verify whether the objects have been successfully deleted.
General Syntax
DeleteBudgetItemResultArray = cventapi.DeleteBudgetItem(CvObjectArray CvObjects)
Input
Name | Type | Description |
---|---|---|
CvObject Array | Array | Array of one or more ID to delete. No more than 200 in an array. A MessageId can also be included with each instance of the array. |
Output
Name | Type | Description |
---|---|---|
Id | GUID | ID specified with the call. |
ReferenceId | String | MessageId input. |
Success | Boolean | Indicates whether the action taken was successful (True) or not (False) for the object instance. |
Errors | Error Array | If an error occurred when the action was taken, an array of one or more Error objects providing the error code and description. |
Last updated on