/**
* Mailing Contact Just doesn't support id. We have always insisted on finding a way to
* support id in API but in this case the underlying tables are crying out for a restructure
- * & it just doesn't make sense
+ * & it just doesn't make sense, on the otherhand Event need id to be existant as pseudo property
+ * is been associated with it, so we need to bypass for get api otherwise it will through pseudo_match validation
*
* @param bool $sequential
*
* Entities that cannot be retrieved by ID
*/
public static function toBeSkipped_getByID($sequential = FALSE) {
- return array('MailingContact');
+ return array('MailingContact', 'Event');
}
/**