Create meeting type
Creates a new meeting type with specified duration, availability settings, and booking options.
curl --request POST \
--url https://api.example.com/v4/meeting-type \
--header 'Content-Type: application/json' \
--header 'x-meetergo-api-user-id: <api-key>' \
--data '
{
"meetingInfo": {
"name": "<string>",
"description": "<string>",
"enableRedirect": true,
"redirect": "<string>",
"passEventDetailsToRedirect": true,
"duration": 123,
"customChannelName": "<string>",
"customChannelLink": "<string>",
"groupBooking": true,
"showAvailableSlots": true,
"enrichInvitee": true,
"confirmationButton": {
"useConfirmationButton": true,
"text": "<string>",
"color": "<string>",
"link": "<string>"
},
"bufferBefore": 123,
"bufferAfter": 123,
"color": {}
},
"slug": "<string>",
"spots": 50.5,
"isGlobalQueue": true,
"workspaceId": "<string>",
"userId": "<string>",
"locations": [
"Office A",
"Conference Room B",
"Remote"
],
"resourceChannels": [
{
"resourceId": "<string>",
"name": "<string>",
"availabilityId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"groupName": "<string>",
"groupMemberIndex": 1
}
],
"daysIntoFuture": {
"mode": "limit",
"bookingLimit": 43200,
"rangeMin": "2025-01-01T00:00:00.000Z",
"rangeMax": "2025-12-31T23:59:59.000Z",
"countMode": "calendar"
},
"availabilityId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"ics": {
"title": "{!M.Guest.Fullname} / {!M.Host.Fullname}",
"description": "{!M.Meeting.Name}\nEmail: {!M.Guest.Email}\nPhone: {!M.Guest.Phone}",
"location": "{!M.Meeting.Venue}"
},
"metadata": {
"ticketId": "EVAL-12345"
},
"internalNotes": "pi009_Markt Tansas Offenbach_TSO – Partner: Max Müller",
"options": {
"createOneTimeLink": true
}
}
'import requests
url = "https://api.example.com/v4/meeting-type"
payload = {
"meetingInfo": {
"name": "<string>",
"description": "<string>",
"enableRedirect": True,
"redirect": "<string>",
"passEventDetailsToRedirect": True,
"duration": 123,
"customChannelName": "<string>",
"customChannelLink": "<string>",
"groupBooking": True,
"showAvailableSlots": True,
"enrichInvitee": True,
"confirmationButton": {
"useConfirmationButton": True,
"text": "<string>",
"color": "<string>",
"link": "<string>"
},
"bufferBefore": 123,
"bufferAfter": 123,
"color": {}
},
"slug": "<string>",
"spots": 50.5,
"isGlobalQueue": True,
"workspaceId": "<string>",
"userId": "<string>",
"locations": ["Office A", "Conference Room B", "Remote"],
"resourceChannels": [
{
"resourceId": "<string>",
"name": "<string>",
"availabilityId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"groupName": "<string>",
"groupMemberIndex": 1
}
],
"daysIntoFuture": {
"mode": "limit",
"bookingLimit": 43200,
"rangeMin": "2025-01-01T00:00:00.000Z",
"rangeMax": "2025-12-31T23:59:59.000Z",
"countMode": "calendar"
},
"availabilityId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"ics": {
"title": "{!M.Guest.Fullname} / {!M.Host.Fullname}",
"description": "{!M.Meeting.Name}
Email: {!M.Guest.Email}
Phone: {!M.Guest.Phone}",
"location": "{!M.Meeting.Venue}"
},
"metadata": { "ticketId": "EVAL-12345" },
"internalNotes": "pi009_Markt Tansas Offenbach_TSO – Partner: Max Müller",
"options": { "createOneTimeLink": True }
}
headers = {
"x-meetergo-api-user-id": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-meetergo-api-user-id': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
meetingInfo: {
name: '<string>',
description: '<string>',
enableRedirect: true,
redirect: '<string>',
passEventDetailsToRedirect: true,
duration: 123,
customChannelName: '<string>',
customChannelLink: '<string>',
groupBooking: true,
showAvailableSlots: true,
enrichInvitee: true,
confirmationButton: {
useConfirmationButton: true,
text: '<string>',
color: '<string>',
link: '<string>'
},
bufferBefore: 123,
bufferAfter: 123,
color: {}
},
slug: '<string>',
spots: 50.5,
isGlobalQueue: true,
workspaceId: '<string>',
userId: '<string>',
locations: ['Office A', 'Conference Room B', 'Remote'],
resourceChannels: [
{
resourceId: '<string>',
name: '<string>',
availabilityId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
groupName: '<string>',
groupMemberIndex: 1
}
],
daysIntoFuture: {
mode: 'limit',
bookingLimit: 43200,
rangeMin: '2025-01-01T00:00:00.000Z',
rangeMax: '2025-12-31T23:59:59.000Z',
countMode: 'calendar'
},
availabilityId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
ics: {
title: '{!M.Guest.Fullname} / {!M.Host.Fullname}',
description: '{!M.Meeting.Name}\nEmail: {!M.Guest.Email}\nPhone: {!M.Guest.Phone}',
location: '{!M.Meeting.Venue}'
},
metadata: {ticketId: 'EVAL-12345'},
internalNotes: 'pi009_Markt Tansas Offenbach_TSO – Partner: Max Müller',
options: {createOneTimeLink: true}
})
};
fetch('https://api.example.com/v4/meeting-type', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v4/meeting-type",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'meetingInfo' => [
'name' => '<string>',
'description' => '<string>',
'enableRedirect' => true,
'redirect' => '<string>',
'passEventDetailsToRedirect' => true,
'duration' => 123,
'customChannelName' => '<string>',
'customChannelLink' => '<string>',
'groupBooking' => true,
'showAvailableSlots' => true,
'enrichInvitee' => true,
'confirmationButton' => [
'useConfirmationButton' => true,
'text' => '<string>',
'color' => '<string>',
'link' => '<string>'
],
'bufferBefore' => 123,
'bufferAfter' => 123,
'color' => [
]
],
'slug' => '<string>',
'spots' => 50.5,
'isGlobalQueue' => true,
'workspaceId' => '<string>',
'userId' => '<string>',
'locations' => [
'Office A',
'Conference Room B',
'Remote'
],
'resourceChannels' => [
[
'resourceId' => '<string>',
'name' => '<string>',
'availabilityId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'groupName' => '<string>',
'groupMemberIndex' => 1
]
],
'daysIntoFuture' => [
'mode' => 'limit',
'bookingLimit' => 43200,
'rangeMin' => '2025-01-01T00:00:00.000Z',
'rangeMax' => '2025-12-31T23:59:59.000Z',
'countMode' => 'calendar'
],
'availabilityId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'ics' => [
'title' => '{!M.Guest.Fullname} / {!M.Host.Fullname}',
'description' => '{!M.Meeting.Name}
Email: {!M.Guest.Email}
Phone: {!M.Guest.Phone}',
'location' => '{!M.Meeting.Venue}'
],
'metadata' => [
'ticketId' => 'EVAL-12345'
],
'internalNotes' => 'pi009_Markt Tansas Offenbach_TSO – Partner: Max Müller',
'options' => [
'createOneTimeLink' => true
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-meetergo-api-user-id: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v4/meeting-type"
payload := strings.NewReader("{\n \"meetingInfo\": {\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"enableRedirect\": true,\n \"redirect\": \"<string>\",\n \"passEventDetailsToRedirect\": true,\n \"duration\": 123,\n \"customChannelName\": \"<string>\",\n \"customChannelLink\": \"<string>\",\n \"groupBooking\": true,\n \"showAvailableSlots\": true,\n \"enrichInvitee\": true,\n \"confirmationButton\": {\n \"useConfirmationButton\": true,\n \"text\": \"<string>\",\n \"color\": \"<string>\",\n \"link\": \"<string>\"\n },\n \"bufferBefore\": 123,\n \"bufferAfter\": 123,\n \"color\": {}\n },\n \"slug\": \"<string>\",\n \"spots\": 50.5,\n \"isGlobalQueue\": true,\n \"workspaceId\": \"<string>\",\n \"userId\": \"<string>\",\n \"locations\": [\n \"Office A\",\n \"Conference Room B\",\n \"Remote\"\n ],\n \"resourceChannels\": [\n {\n \"resourceId\": \"<string>\",\n \"name\": \"<string>\",\n \"availabilityId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"groupName\": \"<string>\",\n \"groupMemberIndex\": 1\n }\n ],\n \"daysIntoFuture\": {\n \"mode\": \"limit\",\n \"bookingLimit\": 43200,\n \"rangeMin\": \"2025-01-01T00:00:00.000Z\",\n \"rangeMax\": \"2025-12-31T23:59:59.000Z\",\n \"countMode\": \"calendar\"\n },\n \"availabilityId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"ics\": {\n \"title\": \"{!M.Guest.Fullname} / {!M.Host.Fullname}\",\n \"description\": \"{!M.Meeting.Name}\\nEmail: {!M.Guest.Email}\\nPhone: {!M.Guest.Phone}\",\n \"location\": \"{!M.Meeting.Venue}\"\n },\n \"metadata\": {\n \"ticketId\": \"EVAL-12345\"\n },\n \"internalNotes\": \"pi009_Markt Tansas Offenbach_TSO – Partner: Max Müller\",\n \"options\": {\n \"createOneTimeLink\": true\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-meetergo-api-user-id", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/v4/meeting-type")
.header("x-meetergo-api-user-id", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"meetingInfo\": {\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"enableRedirect\": true,\n \"redirect\": \"<string>\",\n \"passEventDetailsToRedirect\": true,\n \"duration\": 123,\n \"customChannelName\": \"<string>\",\n \"customChannelLink\": \"<string>\",\n \"groupBooking\": true,\n \"showAvailableSlots\": true,\n \"enrichInvitee\": true,\n \"confirmationButton\": {\n \"useConfirmationButton\": true,\n \"text\": \"<string>\",\n \"color\": \"<string>\",\n \"link\": \"<string>\"\n },\n \"bufferBefore\": 123,\n \"bufferAfter\": 123,\n \"color\": {}\n },\n \"slug\": \"<string>\",\n \"spots\": 50.5,\n \"isGlobalQueue\": true,\n \"workspaceId\": \"<string>\",\n \"userId\": \"<string>\",\n \"locations\": [\n \"Office A\",\n \"Conference Room B\",\n \"Remote\"\n ],\n \"resourceChannels\": [\n {\n \"resourceId\": \"<string>\",\n \"name\": \"<string>\",\n \"availabilityId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"groupName\": \"<string>\",\n \"groupMemberIndex\": 1\n }\n ],\n \"daysIntoFuture\": {\n \"mode\": \"limit\",\n \"bookingLimit\": 43200,\n \"rangeMin\": \"2025-01-01T00:00:00.000Z\",\n \"rangeMax\": \"2025-12-31T23:59:59.000Z\",\n \"countMode\": \"calendar\"\n },\n \"availabilityId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"ics\": {\n \"title\": \"{!M.Guest.Fullname} / {!M.Host.Fullname}\",\n \"description\": \"{!M.Meeting.Name}\\nEmail: {!M.Guest.Email}\\nPhone: {!M.Guest.Phone}\",\n \"location\": \"{!M.Meeting.Venue}\"\n },\n \"metadata\": {\n \"ticketId\": \"EVAL-12345\"\n },\n \"internalNotes\": \"pi009_Markt Tansas Offenbach_TSO – Partner: Max Müller\",\n \"options\": {\n \"createOneTimeLink\": true\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v4/meeting-type")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-meetergo-api-user-id"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"meetingInfo\": {\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"enableRedirect\": true,\n \"redirect\": \"<string>\",\n \"passEventDetailsToRedirect\": true,\n \"duration\": 123,\n \"customChannelName\": \"<string>\",\n \"customChannelLink\": \"<string>\",\n \"groupBooking\": true,\n \"showAvailableSlots\": true,\n \"enrichInvitee\": true,\n \"confirmationButton\": {\n \"useConfirmationButton\": true,\n \"text\": \"<string>\",\n \"color\": \"<string>\",\n \"link\": \"<string>\"\n },\n \"bufferBefore\": 123,\n \"bufferAfter\": 123,\n \"color\": {}\n },\n \"slug\": \"<string>\",\n \"spots\": 50.5,\n \"isGlobalQueue\": true,\n \"workspaceId\": \"<string>\",\n \"userId\": \"<string>\",\n \"locations\": [\n \"Office A\",\n \"Conference Room B\",\n \"Remote\"\n ],\n \"resourceChannels\": [\n {\n \"resourceId\": \"<string>\",\n \"name\": \"<string>\",\n \"availabilityId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"groupName\": \"<string>\",\n \"groupMemberIndex\": 1\n }\n ],\n \"daysIntoFuture\": {\n \"mode\": \"limit\",\n \"bookingLimit\": 43200,\n \"rangeMin\": \"2025-01-01T00:00:00.000Z\",\n \"rangeMax\": \"2025-12-31T23:59:59.000Z\",\n \"countMode\": \"calendar\"\n },\n \"availabilityId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"ics\": {\n \"title\": \"{!M.Guest.Fullname} / {!M.Host.Fullname}\",\n \"description\": \"{!M.Meeting.Name}\\nEmail: {!M.Guest.Email}\\nPhone: {!M.Guest.Phone}\",\n \"location\": \"{!M.Meeting.Venue}\"\n },\n \"metadata\": {\n \"ticketId\": \"EVAL-12345\"\n },\n \"internalNotes\": \"pi009_Markt Tansas Offenbach_TSO – Partner: Max Müller\",\n \"options\": {\n \"createOneTimeLink\": true\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"meetingInfo": {
"name": "<string>",
"description": "<string>",
"enableRedirect": true,
"redirect": "<string>",
"passEventDetailsToRedirect": true,
"duration": 123,
"customChannelName": "<string>",
"customChannelLink": "<string>",
"groupBooking": true,
"showAvailableSlots": true,
"enrichInvitee": true,
"confirmationButton": {
"useConfirmationButton": true,
"text": "<string>",
"color": "<string>",
"link": "<string>"
},
"bufferBefore": 123,
"bufferAfter": 123,
"color": {}
},
"meetingOptions": {
"allowedDurations": [
15,
30,
60
],
"allowSelectChannel": true,
"allowHostSelection": true,
"forceHostSelection": true,
"allowedChannels": [],
"allowAddingGuests": true,
"doubleOptIn": "<string>",
"requireHostConfirmation": "<string>",
"enableClusterMeeting": true,
"enableBufferCarryOver": true,
"maxBufferCarryOverDelay": 123,
"allowPhoneOnlyBooking": true,
"confirmationPageCssSetting": {
"mode": 123
},
"bookingPagePassword": {
"enable": true,
"password": {}
},
"channelAvailabilities": {}
},
"crmOptions": {
"hubspotContactSync": true,
"hubspotContactStage": "<string>",
"hubspotCompanySync": true,
"hubspotCompanyStage": "<string>",
"hubspotCompanyMatchingField": "<string>",
"hubspotDealSync": true,
"hubspotDealStage": "<string>",
"hubspotPipelineId": "<string>",
"pipedriveDealSync": true,
"pipedriveContactSync": true,
"pipedrivePipelineId": 123,
"pipedriveStageId": 123,
"pipedriveUseExistingDeal": true,
"centralStationContactSync": true,
"centralStationDealSync": true,
"centralStationPipelineId": 123,
"centralStationStageId": 123,
"linkandoSyncEnabled": true,
"linkandoPlaybookId": 123,
"linkandoTemplateId": 123,
"evalancheEnabled": true,
"klicktippEnabled": true,
"getResponseEnabled": true,
"getResponseCampaignId": "<string>",
"brevoEnabled": true,
"sevdeskEnabled": true,
"sevdeskCategoryId": 123,
"smartWeContactSync": true,
"smartWeCompanySync": true,
"smartWeDealSync": true,
"smartWeDealStage": "<string>",
"salesforceSyncEnabled": true,
"salesforceCaseSync": true,
"salesforceLeadSync": true,
"salesforceOpportunitySync": true,
"salesforceLeadStatus": "<string>",
"salesforceCaseStatus": "<string>",
"salesforceOpportunityStage": "<string>",
"salesforceDefaultObjectType": "<string>",
"internalCrmPipelineId": {},
"internalCrmStageId": {},
"crmOptInFieldName": {}
},
"ics": {
"title": {
"en": "<string>",
"de": "<string>",
"fr": "<string>",
"es": "<string>",
"no": "<string>",
"it": "<string>",
"nl": "<string>",
"da": "<string>",
"pl": "<string>",
"se": "<string>",
"tr": "<string>"
},
"description": {
"en": "<string>",
"de": "<string>",
"fr": "<string>",
"es": "<string>",
"no": "<string>",
"it": "<string>",
"nl": "<string>",
"da": "<string>",
"pl": "<string>",
"se": "<string>",
"tr": "<string>"
},
"location": {
"en": "<string>",
"de": "<string>",
"fr": "<string>",
"es": "<string>",
"no": "<string>",
"it": "<string>",
"nl": "<string>",
"da": "<string>",
"pl": "<string>",
"se": "<string>",
"tr": "<string>"
}
},
"timeslotInterval": 123,
"spots": 123,
"enabled": true,
"slug": "<string>",
"bookingMinimum": 123,
"daysIntoFuture": {
"mode": "<string>",
"bookingLimit": 123,
"countMode": "<string>",
"rangeMin": "2023-11-07T05:31:56Z",
"rangeMax": "2023-11-07T05:31:56Z"
},
"enableCalendarInviteNotification": true,
"roundRobin": [
"<string>"
],
"useSchedule": true,
"useCompanyLogo": true,
"useCustomInvite": true,
"disableActionButtons": true,
"useCustomForm": true,
"inCompanyPage": true,
"formFirst": true,
"locations": [
"<string>"
],
"isGlobalQueue": true,
"compact": true,
"disableTeamsEmail": true,
"languageSetting": {
"enable": true,
"default": "<string>",
"allowed": [
"<string>"
]
},
"customTextSelectChannel": {
"enable": true,
"body": "<string>"
},
"timezonePreset": {
"enable": true,
"timezonePreset": "<string>"
},
"cssSetting": {
"mode": 123
},
"metaSetting": {
"nextBetaEnabled": true,
"title": "<string>",
"body": "<string>",
"image": "<string>"
},
"companyId": "<string>",
"createdById": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>",
"workspaceId": "<string>",
"userId": "<string>",
"formId": "<string>",
"availabilityId": "<string>",
"queueId": "<string>",
"reminderIds": [
"<string>"
],
"workspace": {
"id": "<string>",
"name": "<string>",
"slug": "<string>"
},
"user": {
"id": "<string>",
"givenName": "<string>",
"familyName": "<string>",
"slug": "<string>",
"userType": "<string>",
"picture": "<string>"
},
"createdBy": {
"id": "<string>",
"givenName": "<string>",
"familyName": "<string>",
"slug": "<string>",
"userType": "<string>",
"picture": "<string>"
},
"availability": {
"id": "<string>",
"name": "<string>"
},
"form": {
"id": "<string>",
"name": "<string>"
},
"reminders": [
{
"id": 123,
"name": "<string>"
}
],
"metadata": {
"ticketId": "EVAL-12345"
},
"internalNotes": "<string>",
"oneTimeLink": {
"id": "<string>",
"url": "<string>",
"meetingTypeId": "<string>",
"createdAt": "<string>"
}
}{
"id": "<string>",
"meetingInfo": {
"name": "<string>",
"description": "<string>",
"enableRedirect": true,
"redirect": "<string>",
"passEventDetailsToRedirect": true,
"duration": 123,
"customChannelName": "<string>",
"customChannelLink": "<string>",
"groupBooking": true,
"showAvailableSlots": true,
"enrichInvitee": true,
"confirmationButton": {
"useConfirmationButton": true,
"text": "<string>",
"color": "<string>",
"link": "<string>"
},
"bufferBefore": 123,
"bufferAfter": 123,
"color": {}
},
"meetingOptions": {
"allowedDurations": [
15,
30,
60
],
"allowSelectChannel": true,
"allowHostSelection": true,
"forceHostSelection": true,
"allowedChannels": [],
"allowAddingGuests": true,
"doubleOptIn": "<string>",
"requireHostConfirmation": "<string>",
"enableClusterMeeting": true,
"enableBufferCarryOver": true,
"maxBufferCarryOverDelay": 123,
"allowPhoneOnlyBooking": true,
"confirmationPageCssSetting": {
"mode": 123
},
"bookingPagePassword": {
"enable": true,
"password": {}
},
"channelAvailabilities": {}
},
"crmOptions": {
"hubspotContactSync": true,
"hubspotContactStage": "<string>",
"hubspotCompanySync": true,
"hubspotCompanyStage": "<string>",
"hubspotCompanyMatchingField": "<string>",
"hubspotDealSync": true,
"hubspotDealStage": "<string>",
"hubspotPipelineId": "<string>",
"pipedriveDealSync": true,
"pipedriveContactSync": true,
"pipedrivePipelineId": 123,
"pipedriveStageId": 123,
"pipedriveUseExistingDeal": true,
"centralStationContactSync": true,
"centralStationDealSync": true,
"centralStationPipelineId": 123,
"centralStationStageId": 123,
"linkandoSyncEnabled": true,
"linkandoPlaybookId": 123,
"linkandoTemplateId": 123,
"evalancheEnabled": true,
"klicktippEnabled": true,
"getResponseEnabled": true,
"getResponseCampaignId": "<string>",
"brevoEnabled": true,
"sevdeskEnabled": true,
"sevdeskCategoryId": 123,
"smartWeContactSync": true,
"smartWeCompanySync": true,
"smartWeDealSync": true,
"smartWeDealStage": "<string>",
"salesforceSyncEnabled": true,
"salesforceCaseSync": true,
"salesforceLeadSync": true,
"salesforceOpportunitySync": true,
"salesforceLeadStatus": "<string>",
"salesforceCaseStatus": "<string>",
"salesforceOpportunityStage": "<string>",
"salesforceDefaultObjectType": "<string>",
"internalCrmPipelineId": {},
"internalCrmStageId": {},
"crmOptInFieldName": {}
},
"ics": {
"title": {
"en": "<string>",
"de": "<string>",
"fr": "<string>",
"es": "<string>",
"no": "<string>",
"it": "<string>",
"nl": "<string>",
"da": "<string>",
"pl": "<string>",
"se": "<string>",
"tr": "<string>"
},
"description": {
"en": "<string>",
"de": "<string>",
"fr": "<string>",
"es": "<string>",
"no": "<string>",
"it": "<string>",
"nl": "<string>",
"da": "<string>",
"pl": "<string>",
"se": "<string>",
"tr": "<string>"
},
"location": {
"en": "<string>",
"de": "<string>",
"fr": "<string>",
"es": "<string>",
"no": "<string>",
"it": "<string>",
"nl": "<string>",
"da": "<string>",
"pl": "<string>",
"se": "<string>",
"tr": "<string>"
}
},
"timeslotInterval": 123,
"spots": 123,
"enabled": true,
"slug": "<string>",
"bookingMinimum": 123,
"daysIntoFuture": {
"mode": "<string>",
"bookingLimit": 123,
"countMode": "<string>",
"rangeMin": "2023-11-07T05:31:56Z",
"rangeMax": "2023-11-07T05:31:56Z"
},
"enableCalendarInviteNotification": true,
"roundRobin": [
"<string>"
],
"useSchedule": true,
"useCompanyLogo": true,
"useCustomInvite": true,
"disableActionButtons": true,
"useCustomForm": true,
"inCompanyPage": true,
"formFirst": true,
"locations": [
"<string>"
],
"isGlobalQueue": true,
"compact": true,
"disableTeamsEmail": true,
"languageSetting": {
"enable": true,
"default": "<string>",
"allowed": [
"<string>"
]
},
"customTextSelectChannel": {
"enable": true,
"body": "<string>"
},
"timezonePreset": {
"enable": true,
"timezonePreset": "<string>"
},
"cssSetting": {
"mode": 123
},
"metaSetting": {
"nextBetaEnabled": true,
"title": "<string>",
"body": "<string>",
"image": "<string>"
},
"companyId": "<string>",
"createdById": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>",
"workspaceId": "<string>",
"userId": "<string>",
"formId": "<string>",
"availabilityId": "<string>",
"queueId": "<string>",
"reminderIds": [
"<string>"
],
"workspace": {
"id": "<string>",
"name": "<string>",
"slug": "<string>"
},
"user": {
"id": "<string>",
"givenName": "<string>",
"familyName": "<string>",
"slug": "<string>",
"userType": "<string>",
"picture": "<string>"
},
"createdBy": {
"id": "<string>",
"givenName": "<string>",
"familyName": "<string>",
"slug": "<string>",
"userType": "<string>",
"picture": "<string>"
},
"availability": {
"id": "<string>",
"name": "<string>"
},
"form": {
"id": "<string>",
"name": "<string>"
},
"reminders": [
{
"id": 123,
"name": "<string>"
}
],
"metadata": {
"ticketId": "EVAL-12345"
},
"internalNotes": "<string>",
"oneTimeLink": {
"id": "<string>",
"url": "<string>",
"meetingTypeId": "<string>",
"createdAt": "<string>"
}
}Authorizations
User ID to act on behalf of. Platform API Keys only (required with an API Key unless the endpoint states otherwise). Requests authenticated with a Personal Access Token are rejected if this header names another user.
Body
Meeting information
Show child attributes
Show child attributes
Meeting options
Show child attributes
Show child attributes
URL slug for the meeting type
Number of available spots
1 <= x <= 100Create as global queue meeting type
Workspace ID for workspace-based meeting types
User ID for user-specific meeting types
Available locations
["Office A", "Conference Room B", "Remote"]
Resource channels for the meeting type
Show child attributes
Show child attributes
Cancellation policy settings
Show child attributes
Show child attributes
Rescheduling policy settings
Show child attributes
Show child attributes
Future booking window settings
Show child attributes
Show child attributes
ID of an existing availability to use. Mutually exclusive with "availability".
Create a new availability inline. Mutually exclusive with "availabilityId".
Show child attributes
Show child attributes
Calendar invite (ICS) settings. Customize the title, description, and location of calendar events. Each field accepts a plain string (stored under the default language) or an object with language keys.
Show child attributes
Show child attributes
Key-value metadata for integrations
{ "ticketId": "EVAL-12345" }
Internal note for organizers. Never shown to customers.
5000"pi009_Markt Tansas Offenbach_TSO – Partner: Max Müller"
Request options for additional operations
Show child attributes
Show child attributes
Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Key-value metadata for integrations
{ "ticketId": "EVAL-12345" }
Internal note for organizers. Never shown to customers.
One-time booking link (only present when requested via options.createOneTimeLink)
Show child attributes
Show child attributes
curl --request POST \
--url https://api.example.com/v4/meeting-type \
--header 'Content-Type: application/json' \
--header 'x-meetergo-api-user-id: <api-key>' \
--data '
{
"meetingInfo": {
"name": "<string>",
"description": "<string>",
"enableRedirect": true,
"redirect": "<string>",
"passEventDetailsToRedirect": true,
"duration": 123,
"customChannelName": "<string>",
"customChannelLink": "<string>",
"groupBooking": true,
"showAvailableSlots": true,
"enrichInvitee": true,
"confirmationButton": {
"useConfirmationButton": true,
"text": "<string>",
"color": "<string>",
"link": "<string>"
},
"bufferBefore": 123,
"bufferAfter": 123,
"color": {}
},
"slug": "<string>",
"spots": 50.5,
"isGlobalQueue": true,
"workspaceId": "<string>",
"userId": "<string>",
"locations": [
"Office A",
"Conference Room B",
"Remote"
],
"resourceChannels": [
{
"resourceId": "<string>",
"name": "<string>",
"availabilityId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"groupName": "<string>",
"groupMemberIndex": 1
}
],
"daysIntoFuture": {
"mode": "limit",
"bookingLimit": 43200,
"rangeMin": "2025-01-01T00:00:00.000Z",
"rangeMax": "2025-12-31T23:59:59.000Z",
"countMode": "calendar"
},
"availabilityId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"ics": {
"title": "{!M.Guest.Fullname} / {!M.Host.Fullname}",
"description": "{!M.Meeting.Name}\nEmail: {!M.Guest.Email}\nPhone: {!M.Guest.Phone}",
"location": "{!M.Meeting.Venue}"
},
"metadata": {
"ticketId": "EVAL-12345"
},
"internalNotes": "pi009_Markt Tansas Offenbach_TSO – Partner: Max Müller",
"options": {
"createOneTimeLink": true
}
}
'import requests
url = "https://api.example.com/v4/meeting-type"
payload = {
"meetingInfo": {
"name": "<string>",
"description": "<string>",
"enableRedirect": True,
"redirect": "<string>",
"passEventDetailsToRedirect": True,
"duration": 123,
"customChannelName": "<string>",
"customChannelLink": "<string>",
"groupBooking": True,
"showAvailableSlots": True,
"enrichInvitee": True,
"confirmationButton": {
"useConfirmationButton": True,
"text": "<string>",
"color": "<string>",
"link": "<string>"
},
"bufferBefore": 123,
"bufferAfter": 123,
"color": {}
},
"slug": "<string>",
"spots": 50.5,
"isGlobalQueue": True,
"workspaceId": "<string>",
"userId": "<string>",
"locations": ["Office A", "Conference Room B", "Remote"],
"resourceChannels": [
{
"resourceId": "<string>",
"name": "<string>",
"availabilityId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"groupName": "<string>",
"groupMemberIndex": 1
}
],
"daysIntoFuture": {
"mode": "limit",
"bookingLimit": 43200,
"rangeMin": "2025-01-01T00:00:00.000Z",
"rangeMax": "2025-12-31T23:59:59.000Z",
"countMode": "calendar"
},
"availabilityId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"ics": {
"title": "{!M.Guest.Fullname} / {!M.Host.Fullname}",
"description": "{!M.Meeting.Name}
Email: {!M.Guest.Email}
Phone: {!M.Guest.Phone}",
"location": "{!M.Meeting.Venue}"
},
"metadata": { "ticketId": "EVAL-12345" },
"internalNotes": "pi009_Markt Tansas Offenbach_TSO – Partner: Max Müller",
"options": { "createOneTimeLink": True }
}
headers = {
"x-meetergo-api-user-id": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-meetergo-api-user-id': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
meetingInfo: {
name: '<string>',
description: '<string>',
enableRedirect: true,
redirect: '<string>',
passEventDetailsToRedirect: true,
duration: 123,
customChannelName: '<string>',
customChannelLink: '<string>',
groupBooking: true,
showAvailableSlots: true,
enrichInvitee: true,
confirmationButton: {
useConfirmationButton: true,
text: '<string>',
color: '<string>',
link: '<string>'
},
bufferBefore: 123,
bufferAfter: 123,
color: {}
},
slug: '<string>',
spots: 50.5,
isGlobalQueue: true,
workspaceId: '<string>',
userId: '<string>',
locations: ['Office A', 'Conference Room B', 'Remote'],
resourceChannels: [
{
resourceId: '<string>',
name: '<string>',
availabilityId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
groupName: '<string>',
groupMemberIndex: 1
}
],
daysIntoFuture: {
mode: 'limit',
bookingLimit: 43200,
rangeMin: '2025-01-01T00:00:00.000Z',
rangeMax: '2025-12-31T23:59:59.000Z',
countMode: 'calendar'
},
availabilityId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
ics: {
title: '{!M.Guest.Fullname} / {!M.Host.Fullname}',
description: '{!M.Meeting.Name}\nEmail: {!M.Guest.Email}\nPhone: {!M.Guest.Phone}',
location: '{!M.Meeting.Venue}'
},
metadata: {ticketId: 'EVAL-12345'},
internalNotes: 'pi009_Markt Tansas Offenbach_TSO – Partner: Max Müller',
options: {createOneTimeLink: true}
})
};
fetch('https://api.example.com/v4/meeting-type', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v4/meeting-type",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'meetingInfo' => [
'name' => '<string>',
'description' => '<string>',
'enableRedirect' => true,
'redirect' => '<string>',
'passEventDetailsToRedirect' => true,
'duration' => 123,
'customChannelName' => '<string>',
'customChannelLink' => '<string>',
'groupBooking' => true,
'showAvailableSlots' => true,
'enrichInvitee' => true,
'confirmationButton' => [
'useConfirmationButton' => true,
'text' => '<string>',
'color' => '<string>',
'link' => '<string>'
],
'bufferBefore' => 123,
'bufferAfter' => 123,
'color' => [
]
],
'slug' => '<string>',
'spots' => 50.5,
'isGlobalQueue' => true,
'workspaceId' => '<string>',
'userId' => '<string>',
'locations' => [
'Office A',
'Conference Room B',
'Remote'
],
'resourceChannels' => [
[
'resourceId' => '<string>',
'name' => '<string>',
'availabilityId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'groupName' => '<string>',
'groupMemberIndex' => 1
]
],
'daysIntoFuture' => [
'mode' => 'limit',
'bookingLimit' => 43200,
'rangeMin' => '2025-01-01T00:00:00.000Z',
'rangeMax' => '2025-12-31T23:59:59.000Z',
'countMode' => 'calendar'
],
'availabilityId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'ics' => [
'title' => '{!M.Guest.Fullname} / {!M.Host.Fullname}',
'description' => '{!M.Meeting.Name}
Email: {!M.Guest.Email}
Phone: {!M.Guest.Phone}',
'location' => '{!M.Meeting.Venue}'
],
'metadata' => [
'ticketId' => 'EVAL-12345'
],
'internalNotes' => 'pi009_Markt Tansas Offenbach_TSO – Partner: Max Müller',
'options' => [
'createOneTimeLink' => true
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-meetergo-api-user-id: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v4/meeting-type"
payload := strings.NewReader("{\n \"meetingInfo\": {\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"enableRedirect\": true,\n \"redirect\": \"<string>\",\n \"passEventDetailsToRedirect\": true,\n \"duration\": 123,\n \"customChannelName\": \"<string>\",\n \"customChannelLink\": \"<string>\",\n \"groupBooking\": true,\n \"showAvailableSlots\": true,\n \"enrichInvitee\": true,\n \"confirmationButton\": {\n \"useConfirmationButton\": true,\n \"text\": \"<string>\",\n \"color\": \"<string>\",\n \"link\": \"<string>\"\n },\n \"bufferBefore\": 123,\n \"bufferAfter\": 123,\n \"color\": {}\n },\n \"slug\": \"<string>\",\n \"spots\": 50.5,\n \"isGlobalQueue\": true,\n \"workspaceId\": \"<string>\",\n \"userId\": \"<string>\",\n \"locations\": [\n \"Office A\",\n \"Conference Room B\",\n \"Remote\"\n ],\n \"resourceChannels\": [\n {\n \"resourceId\": \"<string>\",\n \"name\": \"<string>\",\n \"availabilityId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"groupName\": \"<string>\",\n \"groupMemberIndex\": 1\n }\n ],\n \"daysIntoFuture\": {\n \"mode\": \"limit\",\n \"bookingLimit\": 43200,\n \"rangeMin\": \"2025-01-01T00:00:00.000Z\",\n \"rangeMax\": \"2025-12-31T23:59:59.000Z\",\n \"countMode\": \"calendar\"\n },\n \"availabilityId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"ics\": {\n \"title\": \"{!M.Guest.Fullname} / {!M.Host.Fullname}\",\n \"description\": \"{!M.Meeting.Name}\\nEmail: {!M.Guest.Email}\\nPhone: {!M.Guest.Phone}\",\n \"location\": \"{!M.Meeting.Venue}\"\n },\n \"metadata\": {\n \"ticketId\": \"EVAL-12345\"\n },\n \"internalNotes\": \"pi009_Markt Tansas Offenbach_TSO – Partner: Max Müller\",\n \"options\": {\n \"createOneTimeLink\": true\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-meetergo-api-user-id", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/v4/meeting-type")
.header("x-meetergo-api-user-id", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"meetingInfo\": {\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"enableRedirect\": true,\n \"redirect\": \"<string>\",\n \"passEventDetailsToRedirect\": true,\n \"duration\": 123,\n \"customChannelName\": \"<string>\",\n \"customChannelLink\": \"<string>\",\n \"groupBooking\": true,\n \"showAvailableSlots\": true,\n \"enrichInvitee\": true,\n \"confirmationButton\": {\n \"useConfirmationButton\": true,\n \"text\": \"<string>\",\n \"color\": \"<string>\",\n \"link\": \"<string>\"\n },\n \"bufferBefore\": 123,\n \"bufferAfter\": 123,\n \"color\": {}\n },\n \"slug\": \"<string>\",\n \"spots\": 50.5,\n \"isGlobalQueue\": true,\n \"workspaceId\": \"<string>\",\n \"userId\": \"<string>\",\n \"locations\": [\n \"Office A\",\n \"Conference Room B\",\n \"Remote\"\n ],\n \"resourceChannels\": [\n {\n \"resourceId\": \"<string>\",\n \"name\": \"<string>\",\n \"availabilityId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"groupName\": \"<string>\",\n \"groupMemberIndex\": 1\n }\n ],\n \"daysIntoFuture\": {\n \"mode\": \"limit\",\n \"bookingLimit\": 43200,\n \"rangeMin\": \"2025-01-01T00:00:00.000Z\",\n \"rangeMax\": \"2025-12-31T23:59:59.000Z\",\n \"countMode\": \"calendar\"\n },\n \"availabilityId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"ics\": {\n \"title\": \"{!M.Guest.Fullname} / {!M.Host.Fullname}\",\n \"description\": \"{!M.Meeting.Name}\\nEmail: {!M.Guest.Email}\\nPhone: {!M.Guest.Phone}\",\n \"location\": \"{!M.Meeting.Venue}\"\n },\n \"metadata\": {\n \"ticketId\": \"EVAL-12345\"\n },\n \"internalNotes\": \"pi009_Markt Tansas Offenbach_TSO – Partner: Max Müller\",\n \"options\": {\n \"createOneTimeLink\": true\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v4/meeting-type")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-meetergo-api-user-id"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"meetingInfo\": {\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"enableRedirect\": true,\n \"redirect\": \"<string>\",\n \"passEventDetailsToRedirect\": true,\n \"duration\": 123,\n \"customChannelName\": \"<string>\",\n \"customChannelLink\": \"<string>\",\n \"groupBooking\": true,\n \"showAvailableSlots\": true,\n \"enrichInvitee\": true,\n \"confirmationButton\": {\n \"useConfirmationButton\": true,\n \"text\": \"<string>\",\n \"color\": \"<string>\",\n \"link\": \"<string>\"\n },\n \"bufferBefore\": 123,\n \"bufferAfter\": 123,\n \"color\": {}\n },\n \"slug\": \"<string>\",\n \"spots\": 50.5,\n \"isGlobalQueue\": true,\n \"workspaceId\": \"<string>\",\n \"userId\": \"<string>\",\n \"locations\": [\n \"Office A\",\n \"Conference Room B\",\n \"Remote\"\n ],\n \"resourceChannels\": [\n {\n \"resourceId\": \"<string>\",\n \"name\": \"<string>\",\n \"availabilityId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"groupName\": \"<string>\",\n \"groupMemberIndex\": 1\n }\n ],\n \"daysIntoFuture\": {\n \"mode\": \"limit\",\n \"bookingLimit\": 43200,\n \"rangeMin\": \"2025-01-01T00:00:00.000Z\",\n \"rangeMax\": \"2025-12-31T23:59:59.000Z\",\n \"countMode\": \"calendar\"\n },\n \"availabilityId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"ics\": {\n \"title\": \"{!M.Guest.Fullname} / {!M.Host.Fullname}\",\n \"description\": \"{!M.Meeting.Name}\\nEmail: {!M.Guest.Email}\\nPhone: {!M.Guest.Phone}\",\n \"location\": \"{!M.Meeting.Venue}\"\n },\n \"metadata\": {\n \"ticketId\": \"EVAL-12345\"\n },\n \"internalNotes\": \"pi009_Markt Tansas Offenbach_TSO – Partner: Max Müller\",\n \"options\": {\n \"createOneTimeLink\": true\n }\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"meetingInfo": {
"name": "<string>",
"description": "<string>",
"enableRedirect": true,
"redirect": "<string>",
"passEventDetailsToRedirect": true,
"duration": 123,
"customChannelName": "<string>",
"customChannelLink": "<string>",
"groupBooking": true,
"showAvailableSlots": true,
"enrichInvitee": true,
"confirmationButton": {
"useConfirmationButton": true,
"text": "<string>",
"color": "<string>",
"link": "<string>"
},
"bufferBefore": 123,
"bufferAfter": 123,
"color": {}
},
"meetingOptions": {
"allowedDurations": [
15,
30,
60
],
"allowSelectChannel": true,
"allowHostSelection": true,
"forceHostSelection": true,
"allowedChannels": [],
"allowAddingGuests": true,
"doubleOptIn": "<string>",
"requireHostConfirmation": "<string>",
"enableClusterMeeting": true,
"enableBufferCarryOver": true,
"maxBufferCarryOverDelay": 123,
"allowPhoneOnlyBooking": true,
"confirmationPageCssSetting": {
"mode": 123
},
"bookingPagePassword": {
"enable": true,
"password": {}
},
"channelAvailabilities": {}
},
"crmOptions": {
"hubspotContactSync": true,
"hubspotContactStage": "<string>",
"hubspotCompanySync": true,
"hubspotCompanyStage": "<string>",
"hubspotCompanyMatchingField": "<string>",
"hubspotDealSync": true,
"hubspotDealStage": "<string>",
"hubspotPipelineId": "<string>",
"pipedriveDealSync": true,
"pipedriveContactSync": true,
"pipedrivePipelineId": 123,
"pipedriveStageId": 123,
"pipedriveUseExistingDeal": true,
"centralStationContactSync": true,
"centralStationDealSync": true,
"centralStationPipelineId": 123,
"centralStationStageId": 123,
"linkandoSyncEnabled": true,
"linkandoPlaybookId": 123,
"linkandoTemplateId": 123,
"evalancheEnabled": true,
"klicktippEnabled": true,
"getResponseEnabled": true,
"getResponseCampaignId": "<string>",
"brevoEnabled": true,
"sevdeskEnabled": true,
"sevdeskCategoryId": 123,
"smartWeContactSync": true,
"smartWeCompanySync": true,
"smartWeDealSync": true,
"smartWeDealStage": "<string>",
"salesforceSyncEnabled": true,
"salesforceCaseSync": true,
"salesforceLeadSync": true,
"salesforceOpportunitySync": true,
"salesforceLeadStatus": "<string>",
"salesforceCaseStatus": "<string>",
"salesforceOpportunityStage": "<string>",
"salesforceDefaultObjectType": "<string>",
"internalCrmPipelineId": {},
"internalCrmStageId": {},
"crmOptInFieldName": {}
},
"ics": {
"title": {
"en": "<string>",
"de": "<string>",
"fr": "<string>",
"es": "<string>",
"no": "<string>",
"it": "<string>",
"nl": "<string>",
"da": "<string>",
"pl": "<string>",
"se": "<string>",
"tr": "<string>"
},
"description": {
"en": "<string>",
"de": "<string>",
"fr": "<string>",
"es": "<string>",
"no": "<string>",
"it": "<string>",
"nl": "<string>",
"da": "<string>",
"pl": "<string>",
"se": "<string>",
"tr": "<string>"
},
"location": {
"en": "<string>",
"de": "<string>",
"fr": "<string>",
"es": "<string>",
"no": "<string>",
"it": "<string>",
"nl": "<string>",
"da": "<string>",
"pl": "<string>",
"se": "<string>",
"tr": "<string>"
}
},
"timeslotInterval": 123,
"spots": 123,
"enabled": true,
"slug": "<string>",
"bookingMinimum": 123,
"daysIntoFuture": {
"mode": "<string>",
"bookingLimit": 123,
"countMode": "<string>",
"rangeMin": "2023-11-07T05:31:56Z",
"rangeMax": "2023-11-07T05:31:56Z"
},
"enableCalendarInviteNotification": true,
"roundRobin": [
"<string>"
],
"useSchedule": true,
"useCompanyLogo": true,
"useCustomInvite": true,
"disableActionButtons": true,
"useCustomForm": true,
"inCompanyPage": true,
"formFirst": true,
"locations": [
"<string>"
],
"isGlobalQueue": true,
"compact": true,
"disableTeamsEmail": true,
"languageSetting": {
"enable": true,
"default": "<string>",
"allowed": [
"<string>"
]
},
"customTextSelectChannel": {
"enable": true,
"body": "<string>"
},
"timezonePreset": {
"enable": true,
"timezonePreset": "<string>"
},
"cssSetting": {
"mode": 123
},
"metaSetting": {
"nextBetaEnabled": true,
"title": "<string>",
"body": "<string>",
"image": "<string>"
},
"companyId": "<string>",
"createdById": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>",
"workspaceId": "<string>",
"userId": "<string>",
"formId": "<string>",
"availabilityId": "<string>",
"queueId": "<string>",
"reminderIds": [
"<string>"
],
"workspace": {
"id": "<string>",
"name": "<string>",
"slug": "<string>"
},
"user": {
"id": "<string>",
"givenName": "<string>",
"familyName": "<string>",
"slug": "<string>",
"userType": "<string>",
"picture": "<string>"
},
"createdBy": {
"id": "<string>",
"givenName": "<string>",
"familyName": "<string>",
"slug": "<string>",
"userType": "<string>",
"picture": "<string>"
},
"availability": {
"id": "<string>",
"name": "<string>"
},
"form": {
"id": "<string>",
"name": "<string>"
},
"reminders": [
{
"id": 123,
"name": "<string>"
}
],
"metadata": {
"ticketId": "EVAL-12345"
},
"internalNotes": "<string>",
"oneTimeLink": {
"id": "<string>",
"url": "<string>",
"meetingTypeId": "<string>",
"createdAt": "<string>"
}
}{
"id": "<string>",
"meetingInfo": {
"name": "<string>",
"description": "<string>",
"enableRedirect": true,
"redirect": "<string>",
"passEventDetailsToRedirect": true,
"duration": 123,
"customChannelName": "<string>",
"customChannelLink": "<string>",
"groupBooking": true,
"showAvailableSlots": true,
"enrichInvitee": true,
"confirmationButton": {
"useConfirmationButton": true,
"text": "<string>",
"color": "<string>",
"link": "<string>"
},
"bufferBefore": 123,
"bufferAfter": 123,
"color": {}
},
"meetingOptions": {
"allowedDurations": [
15,
30,
60
],
"allowSelectChannel": true,
"allowHostSelection": true,
"forceHostSelection": true,
"allowedChannels": [],
"allowAddingGuests": true,
"doubleOptIn": "<string>",
"requireHostConfirmation": "<string>",
"enableClusterMeeting": true,
"enableBufferCarryOver": true,
"maxBufferCarryOverDelay": 123,
"allowPhoneOnlyBooking": true,
"confirmationPageCssSetting": {
"mode": 123
},
"bookingPagePassword": {
"enable": true,
"password": {}
},
"channelAvailabilities": {}
},
"crmOptions": {
"hubspotContactSync": true,
"hubspotContactStage": "<string>",
"hubspotCompanySync": true,
"hubspotCompanyStage": "<string>",
"hubspotCompanyMatchingField": "<string>",
"hubspotDealSync": true,
"hubspotDealStage": "<string>",
"hubspotPipelineId": "<string>",
"pipedriveDealSync": true,
"pipedriveContactSync": true,
"pipedrivePipelineId": 123,
"pipedriveStageId": 123,
"pipedriveUseExistingDeal": true,
"centralStationContactSync": true,
"centralStationDealSync": true,
"centralStationPipelineId": 123,
"centralStationStageId": 123,
"linkandoSyncEnabled": true,
"linkandoPlaybookId": 123,
"linkandoTemplateId": 123,
"evalancheEnabled": true,
"klicktippEnabled": true,
"getResponseEnabled": true,
"getResponseCampaignId": "<string>",
"brevoEnabled": true,
"sevdeskEnabled": true,
"sevdeskCategoryId": 123,
"smartWeContactSync": true,
"smartWeCompanySync": true,
"smartWeDealSync": true,
"smartWeDealStage": "<string>",
"salesforceSyncEnabled": true,
"salesforceCaseSync": true,
"salesforceLeadSync": true,
"salesforceOpportunitySync": true,
"salesforceLeadStatus": "<string>",
"salesforceCaseStatus": "<string>",
"salesforceOpportunityStage": "<string>",
"salesforceDefaultObjectType": "<string>",
"internalCrmPipelineId": {},
"internalCrmStageId": {},
"crmOptInFieldName": {}
},
"ics": {
"title": {
"en": "<string>",
"de": "<string>",
"fr": "<string>",
"es": "<string>",
"no": "<string>",
"it": "<string>",
"nl": "<string>",
"da": "<string>",
"pl": "<string>",
"se": "<string>",
"tr": "<string>"
},
"description": {
"en": "<string>",
"de": "<string>",
"fr": "<string>",
"es": "<string>",
"no": "<string>",
"it": "<string>",
"nl": "<string>",
"da": "<string>",
"pl": "<string>",
"se": "<string>",
"tr": "<string>"
},
"location": {
"en": "<string>",
"de": "<string>",
"fr": "<string>",
"es": "<string>",
"no": "<string>",
"it": "<string>",
"nl": "<string>",
"da": "<string>",
"pl": "<string>",
"se": "<string>",
"tr": "<string>"
}
},
"timeslotInterval": 123,
"spots": 123,
"enabled": true,
"slug": "<string>",
"bookingMinimum": 123,
"daysIntoFuture": {
"mode": "<string>",
"bookingLimit": 123,
"countMode": "<string>",
"rangeMin": "2023-11-07T05:31:56Z",
"rangeMax": "2023-11-07T05:31:56Z"
},
"enableCalendarInviteNotification": true,
"roundRobin": [
"<string>"
],
"useSchedule": true,
"useCompanyLogo": true,
"useCustomInvite": true,
"disableActionButtons": true,
"useCustomForm": true,
"inCompanyPage": true,
"formFirst": true,
"locations": [
"<string>"
],
"isGlobalQueue": true,
"compact": true,
"disableTeamsEmail": true,
"languageSetting": {
"enable": true,
"default": "<string>",
"allowed": [
"<string>"
]
},
"customTextSelectChannel": {
"enable": true,
"body": "<string>"
},
"timezonePreset": {
"enable": true,
"timezonePreset": "<string>"
},
"cssSetting": {
"mode": 123
},
"metaSetting": {
"nextBetaEnabled": true,
"title": "<string>",
"body": "<string>",
"image": "<string>"
},
"companyId": "<string>",
"createdById": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>",
"workspaceId": "<string>",
"userId": "<string>",
"formId": "<string>",
"availabilityId": "<string>",
"queueId": "<string>",
"reminderIds": [
"<string>"
],
"workspace": {
"id": "<string>",
"name": "<string>",
"slug": "<string>"
},
"user": {
"id": "<string>",
"givenName": "<string>",
"familyName": "<string>",
"slug": "<string>",
"userType": "<string>",
"picture": "<string>"
},
"createdBy": {
"id": "<string>",
"givenName": "<string>",
"familyName": "<string>",
"slug": "<string>",
"userType": "<string>",
"picture": "<string>"
},
"availability": {
"id": "<string>",
"name": "<string>"
},
"form": {
"id": "<string>",
"name": "<string>"
},
"reminders": [
{
"id": 123,
"name": "<string>"
}
],
"metadata": {
"ticketId": "EVAL-12345"
},
"internalNotes": "<string>",
"oneTimeLink": {
"id": "<string>",
"url": "<string>",
"meetingTypeId": "<string>",
"createdAt": "<string>"
}
}