List all custom fields
Custom Fields
List Custom Fields
Retrieve all custom fields defined for your account
GET
List all custom fields
Use Cases
- Display field options: Show available custom fields in your application UI
- Integration mapping: Map external CRM fields to Minimo custom fields
- Data validation: Check which fields exist before creating contacts
Group by Category
Get custom fields organized by category by adding thegroupBy=category query parameter:
Fields without a category are automatically grouped under
uncategorized.Field Types
| Type | Description |
|---|---|
text | Free text input |
number | Numeric value |
boolean | True/false |
date | Date value |
datetime | Date and time |
select | Single selection from options |
json | JSON object |
Common Errors
| Error | Cause | Solution |
|---|---|---|
unauthorized | Invalid API key | Check Authorization header format |
invalid_group_by | Invalid groupBy value | Use category or omit the parameter |
Related Endpoints
- Create Custom Field: Create a new custom field
- Create or Update Contact: Create and update contacts with custom field values
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Group results by specified field (only 'category' is supported)
Available options:
category Response
Successful response with custom fields
- object[]
- object
Example:
{
"id": 1,
"key": "COMPANY_SIZE",
"displayName": "Company Size",
"type": "text",
"category": "Company Info",
"visibility": true,
"source": "Manual"
}