v1

latestOpenAPI 3.1.0© Copyright Partoo2026-07-26163503484.0 KB
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

namestring required

The name of the custom field section. Needs to be unique from all other section names.

descriptionstring nullable

Description of the custom field section

slugstring nullable

Unique identifier slug for the custom field section. Cannot contain any of the following characters: ,;/\|<>

orderinteger

Describes where the custom field section is displayed on the Business Edit view of the Partoo App.

Example request

{
  "name": "Primary Information",
  "description": "Contains essential business details",
  "order": 1,
  "slug": "primary-info"
}

Response

OK

section_idinteger

Id of the custom field section

Example response

{
  "section_id": 6
}