List Contact's Custom Fields

Returns the contact's custom field values — only fields that have a value on the contact are included. Values are typed according to the field's datatype (DateTime fields are formatted in the tenant's timezone, Picklist fields are returned as arrays, etc.).

Path Parameters
dsidstringrequired
The dsid of the contact.
HTTP Response Examples
200
{ "Status": true, "Message": "", "Response": { "graph": [ { "name": "Membership Type", "api_name": "membership_type", "datatype": "Text", "indexed": true, "value": "Gold", "groupname": "", "formatter": "", "friendly_name": "Gold" }, { "name": "Member Since", "api_name": "member_since", "datatype": "DateTime", "indexed": false, "value": "Mar 15, 2023" } ] } }
HTTP Response Parameters
grapharray
Array of populated custom field values. Each item has name (display name), api_name (key used in extendedProperties), datatype (Text, Number, DateTime, Bool, Double, StringArray), value (typed), indexed (boolean), groupname, formatter, picklist (array; StringArray only), and friendly_name (Text only).