Extended Field Object


Extended field that was found or created.

Properties
namespacestringRead-onlyminLength 1maxLength 25

Extended field namespace.

Extended fields created through by calling the Find Or Create Extended Field method are automatically assigned to the custom namespace.


keystringRead-onlyminLength 1maxLength 80

Extended field key.

When accessing contact data, extended field data is available at extendedFields[key]. For example, if the key is "custom.notes", the value can be accessed at extendedFields["custom.notes"].

key is generated when the extended field is created and can't be modified, even if displayName changes.


displayNamestringminLength 1maxLength 150

Display name shown in the contact list.


dataTypestringRead-only

Type of data the field holds.


fieldTypestringRead-only

Indicates whether the extended field is a system field or custom field.


createdDatestringRead-onlyformat date-time

Date and time the field was created.


updatedDatestringRead-onlyformat date-time

Date and time the field was last updated.


descriptionstringRead-onlyminLength 1maxLength 150

Field description, if the field is a system field.

ExtendedField
JSON
{ "namespace": "custom", "key": "custom.my-field", "displayName": "My Field", "dataType": "TEXT", "fieldType": "USER_DEFINED", "createdDate": "2019-10-10T12:30:56Z", "updatedDate": "2020-05-10T07:14:59Z" }
Did this help?