These endpoints let you create, edit, update and delete all of the custom fields in your account. Of particular interest is the /#account_id/fields/#field_id/clear endpoint which lets you clear out all the data in a single field for all members in your account. This makes it easy to re-initialize a dataset if you’re looking to correct an import error or syncing issue.
Gets a list of this account’s defined fields.
| Parameters: | 
 | 
|---|---|
| Returns : | An array of fields. | 
Gets the detailed information about a particular field.
| Parameters: | 
 | 
|---|---|
| Returns : | A field. | 
| Raises : | Http404 if the field does not exist. | 
Create a new field field.
There must not already be a field with this name.
| Parameters: | 
 | 
|---|---|
| Returns : | A reference to the new field. | 
Deletes a field.
| Returns : | True if the field is deleted. | 
|---|---|
| Raises : | Http404 if the field does not exist. | 
Clear the member data for the specified field.
| Returns : | True if all of the member field data is deleted | 
|---|
Updates an existing field.
| Returns : | A reference to the updated field. | 
|---|