Field Sections

  • Name
    id
    Type
    string
    Description

    Unique identifier of the field section.

  • Name
    name
    Type
    string
    Description

    The name of the field section.

  • Name
    entity
    Type
    string
    Description

    The entity of field section.


GET/api/v3.0/field-sections

Field Sections List

This endpoint allows you to retrieve a list of field sections.

Optional parameters

  • Name
    entity
    Type
    string
    Description

    The entity of field section.

Request

GET
/api/v3.0/field-sections
curl -G https://api.bob-desk.com/api/v3.0/locations \
  -H "Authorization: Bearer {token}" \
  -d entity="location" \

Response

{
"field-sections": [
    {
      "id": "3a4e3cb9563e1d004be4c213",
      "name": "Immobilier",
      "entity": "location",
    }
  ]
}