Field name for php isdk insert

Hi All,
I’m trying to create a script to insert contact using php isdk, in some example I found all this fields :
FirstName’
LastName’
‘Email’
‘Phone1’
‘Phone1Type’
‘Phone2’
‘Phone2Type’
‘StreetAddress1’
‘Country’
‘PostalCode’
‘City’
‘State’
‘ContactType’
‘Language’
‘Company’

I need now to know the other fields name and of all my custom fields. Where can I find them?

Many thanks
Matteo

Hi @Ramon_Colombo,

If you look at the Table Schema Documentation under the Contact section it will tell you the standard field names you can use.

As for custom fields, you can look up their database names through the UI:

  1. Go to Settings > App Settings > Set up custom fields for Contact > Go.
  2. Click on View the field database names (for the API).

To use a custom field you would prepend its database name with an underscore.

Many thanks Chris!