Skip to content
English
  • There are no suggestions because the search field is empty.

Retrieve meeting sections for team spaces

This endpoint allows you to retrieve information about all the sections for meetings within a specific team space.

This endpoint allows you to retrieve information about all the sections for meetings within a specific team. This information enables you to efficiently organize work within the team and assign meetings to individual sections.

Request

  • Method: GET
  • Path: /external/v0/zapier/webhooks/teams/{teamId}/meetings/sections
  • Header:
  • X-KEY: API key for authentication.
  • Path variables:
  • teamId(number): Unique team identifier.

Response

After successfully retrieving the meeting sections, you will receive response in JSON format containing the following information:

[

    {

        "name": "section for meetings",

        "color": "#74A4FF",

        "id": 32254800,

        "deleted": false,

        "state": "OPEN",

        "sortOrder": 257.0

    }

]


Description of attributes:

  • name: The section's name serves for its identification.
  • color: This attribute contains a color code associated with the given section.
  • id: This is a unique identifier of the section.
  • deleted: This attribute indicates whether the section is marked as deleted (true) or not (false).
  • state: This attribute specifies the section's state, which can be "OPEN" or "CLOSE."
  • sortOrder: This is a number that determines the section's order within the list.