Skip to content
Snippets Groups Projects
Commit 58153148 authored by Seamus Lee's avatar Seamus Lee
Browse files

Add in documentation on APIv4 and Custom Data

parent 45387a16
No related branches found
No related tags found
1 merge request!695Add in documentation on APIv4 and Custom Data
# APIv4 and Custom Data
Custom data attached to entities is referenced in the format of `custom_group_machine_name.custom_field_machine_name`.
To set a custom field, or find entities with custom fields of a particular value, you typically use a parameter like this:
```php
$values['custom_field_reference'] = 'value';
```
To return custom data for an entity just include the machine name of the custom data in the select array.
For setting custom date fields, (ie CustomValue create), date format is `YmdHis`, for example: `20050425000000`.
This is just a brief introduction; each API may have different requirements and allow different formats for accessing the custom data. See the [API function documentation](/api/index.md) and also read the comments and documentation in each API php file (under civicrm/CRM/api/v3 in your CiviCRM installation) for exact details,
which vary for each API entity and function.
!!! note
When retrieving custom data from a multiple record custom group set the custom data will be returned in an array of custom field which contains the value and the id of the row in the custom field table.
!!! note
Setting of multivalue custom data fields is still a work in progress.
......@@ -54,7 +54,7 @@ pages:
# - APIv4 Options: api/v4/options.md
# - APIv4 Joins: api/v4/joins.md
# - APIv4 Chaining: api/v4/chaining.md
# - APIv4 Custom Data: api/v4/custom-data.md
- APIv4 Custom Data: api/v4/custom-data.md
# - APIv4 Examples: api/v4/examples.md
# - APIv4 Changes: api/v4/changes.md
- APIv3:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment