Skip to content

Contacts Reserved Fields

awwa500@gmail.com edited this page Jul 17, 2015 · 3 revisions

#get_reserved_fields

List fields that are reserved and can't be used for custom field names.

fields = client.get_reserved_fields
fields.each do |field|
  puts field.name # => 'first_name'
  puts field.type # => 'text'/'date'/'number'
end
Clone this wiki locally