Changes between Version 1 and Version 2 of CiviCRM HowTo Develop API


Ignore:
Timestamp:
11/26/13 13:37:04 (11 years ago)
Author:
Richard Bramley
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CiviCRM HowTo Develop API

    v1 v2  
    991. One standard mechanism is that {{{_civicrm_api3_basic_create}}} function in the utils.php file.  This searches for entities, filtering by their field values.
    10101. 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
     141. [[CiviCRM API - Adding Custom Values to Case Get]]