Custom Fields Section
Create custom field sections
This endpoint enables you to create custom field sections for your organization. You can specify a name, optional description, slug, and order. If no order is provided, it will be set to max(all current sections orders) + 1. PROVIDER users can pass org_id to create custom field sections for a managed organization.
post/custom_fields/section
Query parameters
org_idinteger
Organization ID. Only PROVIDER users can specify a different organization. If not provided, defaults to your own organization.
Request body
Example request
{
"name": "Primary Information",
"description": "Contains essential business details",
"order": 1,
"slug": "primary-info"
}Response
OK
Example response
{
"section_id": 6
}