Usage

Use DeleteBudgetItem to delete a Budget Item from an event.

Basic Steps

  1. Determine the ID of the BudgetItems you want to delete.
  2. Construct a CvObject array and populate it with the IDs of each user you want to delete.
  3. 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.
  4. Call DeleteBudgetItem, passing in the ID array.
  5. Process the results in the DeleteBudgetItemResultArray object to verify whether the objects have been successfully deleted.

General Syntax

DeleteBudgetItemResultArray = cventapi.DeleteBudgetItem(CvObjectArray CvObjects)

Input

NameTypeDescription
CvObject ArrayArrayArray 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

NameTypeDescription
IdGUIDID specified with the call.
ReferenceIdStringMessageId input.
SuccessBooleanIndicates whether the action taken was successful (True) or not (False) for the object instance.
ErrorsError ArrayIf 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