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"
}
]
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.
The human-friendly label for this property.
The type of property (one of string
, number
, boolean
or date
).
[
{
"key": "favoriteColor",
"label": "Favorite Color",
"type": "string"
},
{
"key": "plan",
"label": "Plan",
"type": "string"
}
]