Retrieves all meeting types, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of meeting types.

meeting_type
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of this meeting type.

string
is_default

Indicates this is the default meeting type pre-selected when scheduling a new meeting.

boolean
sales_organization_id

FK of sales_organization. Filled if specific of one SO, empty if can be used by all.

globally unique identifier
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "78ca54cf-3194-40a7-915b-b9c5af18da73",
  "name": "sample string 2",
  "is_default": true,
  "sales_organization_id": "971e95d5-557f-4bea-8a1a-5bab83e584ff",
  "modified_dateutc": "2026-09-16T10:14:55.9969675+00:00"
}

application/xml, text/xml

Sample:
<meeting_type xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <id>78ca54cf-3194-40a7-915b-b9c5af18da73</id>
  <is_default>true</is_default>
  <modified_dateutc>2026-09-16T10:14:55.996Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>971e95d5-557f-4bea-8a1a-5bab83e584ff</sales_organization_id>
</meeting_type>