Usage

Use UpdateGuestInfo to update the information of one or more guests in one event.

Basic Steps

  1. Determine the ID of the event for which you want to update guests’ information.
  2. Construct a Guest array and populate it with the IDs of each guest whose information you want to update.
  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 UpdateGuestInfo, passing in the EventId and Guest array.
  5. Process the results in the UpdateGuestInfoResult array object to verify whether the guests’ information have been successfully updated.

General Syntax

UpdateGuestInfoResultArray = cventapi.UpdateGuestInfo(ID EventId, GuestArray Guests)

Input

NameTypeDescription
EventIdIDID of the event that is having its guests updated.
GuestsGuest ArrayArray of Guests whose information should be updated.

Output

NameTypeDescription
IdIDID of the guest for whom you attempted to update information.
ReferenceIdIDThe MessageId value in the input Guest.
SuccessBooleanIndicates whether the UpdateGuestInfo call succeeded (True) or not (False) for this Guest.
ErrorsError ArrayIf an error occurred during the call, an array of one or more Error objects providing the error code and description.
Last updated on