Get custom field sections
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
Get custom field sections
Documentation Index
Fetch the complete documentation index at: https://developers.partoo.co/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
The authentication system on Partoo API is using API Key that should be put in the header of the request (the name of the header is x-APIKey). An api_key is linked to a user. This user's role will give you different access level to the API features.
Query Parameters
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:
[
{
"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
}
]