| Contact | An individual, <br/> organization, or <br/>house-hold. | “contact\_type”,<br/> “first\_name”, <br/>“last\_name”, <br/>“preferred\_language” |
| Activity | An phone call, meeting,<br/> or email message. that <br/> has occurred (or will <br/> occur) at a specific <br/> date and time| “activity\_type\_id”, <br/> “source\_contact\_id”, <br/> “assignee\_contact\_id” |
| Address | A street-address related <br/> to a contact. | “contact\_id”, <br/> “street\_address”, <br/> “city”, <br/> “state\_province\_id”, <br/> "country\_id’ |
Response Format
===============
The response from an API call is always an associative-array. The
response format can vary depending on the action, but generally
responses meet one of these two structures:
<h3>Success</h3>
````
$result['is_error'] = 0
$result['version'] = 2 or 3 as appropriate
$result['count'] = number of records in the 'values' element of the $result array
$result['values'] = an array of records
````
Please note that the **getsingle** response will not have a $result['values'] holding the records, but a $result array with the fields from the selected record. The response $result will only have an 'is\_error' attribute if there actually is an error.
<h3>Error</h3>
````
$result['is_error'] = 1
$result['error_message'] = An error message as a string.
| <code>Contact</code> | An individual, <br/> organization, or <br/>house-hold. |<code>create</code><br/><code>get</code><br/><code>delete</code><br/>| <code>contact\_type</code><br/><code>first\_name</code><br/><code>last\_name</code><br/><code>preferred\_language</code> |
| <code>Activity</code> | An phone call, meeting,<br/> or email message. that <br/> has occurred (or will <br/> occur) at a specific <br/> date and time|<code>create</code><br/><code>get</code><br/><code>delete</code><br/>| <code>activity\_type\_id</code><br/><code>source\_contact\_id</code><br/><code>assignee\_contact\_id</code> |
| <code>Address</code> | A street-address related <br/> to a contact. |<code>create</code><br/><code>get</code><br/><code>delete</code><br/>| <code>contact\_id</code>, <br/><code>street\_address</code><br/><code>city</code><br/><code>state\_province\_id</code><br/><code>country\_id</code> |
(*For full, up-to-date details about specific entities and parameters, use the "API Explorer".*)
The API is available in many different environments (such as PHP, REST, and
Javascript), and the notation differs slightly in each environment.
However, if you understand the canonical notation, then other environments
will appear as small adaptations.
Canonically, an API call is processed by the API kernel. The `$entity`,
`$action`, and `$params` are passed as inputs, and an associative-array is
*`civicrm_api($entity, $action, $params)`: This is the older and
less common approach, and it is useful for implementing generic
bindings (such as REST, SOAP, AJAX, Smarty, etal). Instead of
throwing an exception, it returns an array with the properties
`is_error` and `error_message`.
<h3>Bootstrap</h3>
Before calling the PHP procedural API, one may need to ***bootstrap*** CiviCRM. If you're writing code for CiviCRM Core or for a native CiviCRM extension, then the bootstrap is handled automatically. If you're writing code for a Drupal module, a Joomla extension, or a standalone script, then see the examples in [Bootstrap Reference](/confluence/display/CRMDOC/Bootstrap+Reference).
PHP (class.api.php)
PHP (Object Oriented Client)
----------------------------
----------------------------
In CiviCRM version 3.4 an API class was introduced, allowing you to call
CiviCRM v3.4 introduced an object-oriented API client, `class.api.php`.
the CiviCRM API in an Object Oriented way. The class is called
This class be used locally or remotely to invoke APIs, as in:
*class.api.php* and can be found in the api directory. It allows you to
The AJAX interface is automatically available for web-pages generated through CiviCRM (such as ***standard CiviCRM web-page****s***, CiviCRM ***extensions***, and custom CiviCRM ***templates***).
The AJAX interface is automatically available for web-pages generated through CiviCRM (such as ***standard CiviCRM web-page****s***, CiviCRM ***extensions***, and custom CiviCRM ***templates***).
The AJAX interface could be made available to other parts of the same website (e.g. a drupal module or wordpress widget) by calling CRM\_Core\_Resources::singleton()-\>addCoreResources() from php. Please note that the AJAX interface is subject to [API Security](/confluence/display/CRMDOC/API+Security) and [Same Origin Policy](http://en.wikipedia.org/wiki/Same_origin_policy). To use it from an external site or application, see REST interface documentation.
The AJAX interface could be made available to other parts of the same website (e.g. a drupal module or wordpress widget) by calling CRM\_Core\_Resources::singleton()-\>addCoreResources() from php. Please note that the AJAX interface is subject to [API Security](/confluence/display/CRMDOC/API+Security) and [Same Origin Policy](http://en.wikipedia.org/wiki/Same_origin_policy). To use it from an external site or application, see REST interface documentation.
Smarty
Smarty
...
@@ -161,15 +181,27 @@ The smarty call is to add extra information, therefore *create* or
...
@@ -161,15 +181,27 @@ The smarty call is to add extra information, therefore *create* or