Getting custom dropdown values for custom fields using getAppSetting

I’m trying to get a list of labels & values from a custom field we created under Contact. I’m not sure what the module & setting is to get this (from this reference: xml-rpc - Keap Developer Portal).

Thanks!

The table reference is DataFormField. You can find details about that and other tables here:

https://developer.infusionsoft.com/docs/table-schema/

Thanks John. Should i use DataService.query to pull it and if so would you mind giving me an example of what the query syntax should be? Everything I try comes back with nothing. Thanks!

The Query parameter you can use would be something like the following in PHP: [ “Id” =>“%” ]

Basically that will return everything as it is doing a wildcard search in the Id number.

Note, to search for just Contact Record - Custom fields only, the “FormId” field will need to be set to “-1”.

1 Like