Retrieve list of custom fields sections for a given organization, including their names, descriptions, slugs, and ordering information.
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.
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.
OK
[
{
"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
}
]