Changes between Version 1 and Version 2 of CiviCRM HowTo Develop API
- Timestamp:
- 11/26/13 13:37:04 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CiviCRM HowTo Develop API
v1 v2 9 9 1. One standard mechanism is that {{{_civicrm_api3_basic_create}}} function in the utils.php file. This searches for entities, filtering by their field values. 10 10 1. Quite a few use this method mixed, but add functionality to search for entities based on linked entities. E.g, Activities can be found by contact_id, which is a relationship, not a field. The two methods do not play nicely together. For example, try searching for Activities by contact_id and activity_type_id - the activity_type_id filter will be ignored. 11 12 == Investigations 13 14 1. [[CiviCRM API - Adding Custom Values to Case Get]]