GET
/
v1
/
contacts
/
customFields
curl --request GET \
  --url https://app.loops.so/api/v1/contacts/customFields \
  --header 'Authorization: Bearer <token>'
[
  {
    "key": "favoriteColor",
    "label": "Favorite Color",
    "type": "string"
  },
  {
    "key": "plan",
    "label": "Plan",
    "type": "string"
  }
]

This endpoint is now deprecated in favor of List contact properties.

Request

No parameters.

Response

This endpoint will return a list of custom field objects.

If your account has no custom fields, an empty list will be returned.

Custom fields
array
[
  {
    "key": "favoriteColor",
    "label": "Favorite Color",
    "type": "string"
  },
  {
    "key": "plan",
    "label": "Plan",
    "type": "string"
  }
]