Custom Fields
Order custom fields
This endpoint enables you to reorganize the order of custom fields and custom field sections within your organization. You can also move custom fields between sections by specifying a different section_id. PROVIDER users can pass org_id to reorder custom fields for a managed organization.
post/custom_fields/order
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
{
"orders": [
{
"id": 42,
"order": 30,
"section_id": 6
}
],
"section_orders": [
{
"id": 6,
"order": 18
}
]
}Response
OK