dex_list_custom_fields
Retrieve custom field definitions to extend contact data beyond built-in fields in Dex CRM.
Instructions
Retrieve all custom field definitions. Custom fields allow adding structured data to contacts beyond the built-in fields.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/custom-fields.ts:20-32 (registration)Registration and handler implementation for dex_list_custom_fields tool.
server.tool( "dex_list_custom_fields", "Retrieve all custom field definitions. Custom fields allow adding structured data to contacts beyond the built-in fields.", {}, async () => { try { const result = await dex.get("/v1/custom-fields/"); return toResult(result); } catch (error) { return toError(error); } } );