Custom Fields Section
Get custom field sections
Retrieve list of custom fields sections for a given organization, including their names, descriptions, slugs, and ordering information.
get/custom_fields/section
Query parameters
org_idinteger
Filter by organization ID. Only PROVIDER users can use this filter. If you are not a PROVIDER, this will default to the ID of your organization.
Response
OK
Example response
{
"sections": [
{
"id": 1,
"name": "Section A",
"description": "Primary information section",
"order": 3,
"slug": "section-a"
},
{
"id": 2,
"name": "Section B",
"description": null,
"order": 4,
"slug": "section-b"
},
{
"id": 3,
"name": "Section C",
"description": "Additional details section",
"order": 5,
"slug": null
}
]
}