Skip to main content
GET
/
custom_fields
/
section
Get custom field sections
curl --request GET \
  --url https://api.partoo.co/v2/custom_fields/section \
  --header 'x-APIKey: <api-key>'
{
  "sections": [
    {
      "id": 1,
      "name": "Section A",
      "order": 3
    },
    {
      "id": 2,
      "name": "Section B",
      "order": 4
    },
    {
      "id": 3,
      "name": "Section C",
      "order": 5
    }
  ]
}

Authorizations

x-APIKey
string
header
required

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

org_id
integer

Organization id

Response

OK

sections
object[]