This group of endpoints allows you to create and manage custom fields (dimensions/cost centres) for your business.
Custom fields can be of type LIST (with predefined options) or FREE_TEXT. Custom fields created via the Public API have a created_by value of PUBLIC_API.
Custom fields created by accounting integrations (Xero, MYOB, QuickBooks, NetSuite, Business Central) have restrictions: their name and type cannot be modified via the Public API.
Returns a paginated list of custom fields for the given business.
Security
BearerAuth
GET
curl -i -X GET \
'https://public.letsweel.com/v1/businesses/123/custom-fields?offset=50&limit=50' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
{ "count": 10, "next": "limit=50&offset=50", "previous": null, "results": [ { … } ] }