- Getting Started with HYEGRO API
- User Guide
- Developer Guide
- HYEGRO Developer Docs
- HYEGRO CRM API v1.0
- Users
- Leads
- Contacts
- Accounts
- Products & Inventory
- Deals
- Quotations
- Orders
- Invoices
- Cases
- Activities & Tasks
- Search
- METADATA API
- Files & Attachments
Update Custom Field
PUT
https://backend.test-hyegro.com/custom-fields/{field_id}
Request
Path Params
field_id
integer
Field Id
Query Params
schema
Schema
Any of
Body Params application/json
table_name
string
Table Name
ui_label
string
Ui Label
type
Type
Any of
Match pattern:
^(int|string|char|boolean)$
is_required
boolean
Is Required
Example
{
"table_name": "string",
"ui_label": "string",
"type": "string",
"is_required": true
}
Responses
🟢200OK
application/json
Body
id
integer
Id
table_name
string
Table Name
ui_label
string
Ui Label
type
Type
Any of
is_required
boolean
Is Required
cf_name
integer
Cf Name
column_name
string
Column Name
Example
{
"id": 0,
"table_name": "string",
"ui_label": "string",
"type": "string",
"is_required": true,
"cf_name": 0,
"column_name": "string"
}
🟠422Parameter Error
Modified at 2025-04-14 16:23:20