This endpoint returns a list of Event Contact objects.
Endpoint: https://server/EventProApi/DataService.svc/event/contacts
Method: GET
Refer to Event Contact Object.
This endpoint returns a list of Event Contacts objects for a single event.
Endpoint: https://server/EventProApi/DataService.svc/event/{eventID}/contacts
Method: GET
The eventID passed to this endpoint is the Oid of the event you want the contacts for.
Refer to Event Contact Object.
This endpoint allows you to add an event contact to the system.
Endpoint: https://server/EventProApi/DataService.svc/event/contact/add
Method: POST
You pass to this endpoint an Event Contact Object that is used to create the event contact.
The Event Contact Object needs to have a reference to the Event Object it is for using the Event field, and also requires the Contact Type to be set.
The created event contact is returned as an Event Contact Object.
Refer to Event Contact Object.
This endpoint allows you to make modifications to an event contact.
Endpoint: https://server/EventProApi/DataService.svc/event/contact/update
Method: POST
You pass to this endpoint an Event Contact Object with the Oid set to the Oid of the event contact you want to update.
Any non-read-only field you use will be updated on the event contact record.
The updated event contact is returned as an Event Contact Object.
Refer to Event Contact Object.
This endpoint allows you to delete an existing event contact with a matching Oid.
Endpoint: https://server/EventProApi/DataService.svc/event/contact/delete/{oid}
Method: GET
Refer to Event Contact Object.