Create a new meeting type template
curl --request POST \
--url https://api.example.com/v4/meeting-type-template/create \
--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": {}
},
"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": {}
},
"spots": 2,
"locations": [
"Office A",
"Conference Room B",
"Remote"
]
}
'import requests
url = "https://api.example.com/v4/meeting-type-template/create"
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": {}
},
"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": {}
},
"spots": 2,
"locations": ["Office A", "Conference Room B", "Remote"]
}
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: {}
},
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: {}
},
spots: 2,
locations: ['Office A', 'Conference Room B', 'Remote']
})
};
fetch('https://api.example.com/v4/meeting-type-template/create', 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-template/create",
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' => [
]
],
'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' => [
]
],
'spots' => 2,
'locations' => [
'Office A',
'Conference Room B',
'Remote'
]
]),
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-template/create"
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 \"meetingOptions\": {\n \"allowedDurations\": [\n 15,\n 30,\n 60\n ],\n \"allowSelectChannel\": true,\n \"allowHostSelection\": true,\n \"forceHostSelection\": true,\n \"allowedChannels\": [],\n \"allowAddingGuests\": true,\n \"doubleOptIn\": \"<string>\",\n \"requireHostConfirmation\": \"<string>\",\n \"enableClusterMeeting\": true,\n \"enableBufferCarryOver\": true,\n \"maxBufferCarryOverDelay\": 123,\n \"allowPhoneOnlyBooking\": true,\n \"confirmationPageCssSetting\": {\n \"mode\": 123\n },\n \"bookingPagePassword\": {\n \"enable\": true,\n \"password\": {}\n },\n \"channelAvailabilities\": {}\n },\n \"spots\": 2,\n \"locations\": [\n \"Office A\",\n \"Conference Room B\",\n \"Remote\"\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-template/create")
.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 \"meetingOptions\": {\n \"allowedDurations\": [\n 15,\n 30,\n 60\n ],\n \"allowSelectChannel\": true,\n \"allowHostSelection\": true,\n \"forceHostSelection\": true,\n \"allowedChannels\": [],\n \"allowAddingGuests\": true,\n \"doubleOptIn\": \"<string>\",\n \"requireHostConfirmation\": \"<string>\",\n \"enableClusterMeeting\": true,\n \"enableBufferCarryOver\": true,\n \"maxBufferCarryOverDelay\": 123,\n \"allowPhoneOnlyBooking\": true,\n \"confirmationPageCssSetting\": {\n \"mode\": 123\n },\n \"bookingPagePassword\": {\n \"enable\": true,\n \"password\": {}\n },\n \"channelAvailabilities\": {}\n },\n \"spots\": 2,\n \"locations\": [\n \"Office A\",\n \"Conference Room B\",\n \"Remote\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v4/meeting-type-template/create")
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 \"meetingOptions\": {\n \"allowedDurations\": [\n 15,\n 30,\n 60\n ],\n \"allowSelectChannel\": true,\n \"allowHostSelection\": true,\n \"forceHostSelection\": true,\n \"allowedChannels\": [],\n \"allowAddingGuests\": true,\n \"doubleOptIn\": \"<string>\",\n \"requireHostConfirmation\": \"<string>\",\n \"enableClusterMeeting\": true,\n \"enableBufferCarryOver\": true,\n \"maxBufferCarryOverDelay\": 123,\n \"allowPhoneOnlyBooking\": true,\n \"confirmationPageCssSetting\": {\n \"mode\": 123\n },\n \"bookingPagePassword\": {\n \"enable\": true,\n \"password\": {}\n },\n \"channelAvailabilities\": {}\n },\n \"spots\": 2,\n \"locations\": [\n \"Office A\",\n \"Conference Room B\",\n \"Remote\"\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,
"bookingMinimum": 123,
"daysIntoFuture": {
"mode": "<string>",
"bookingLimit": 123,
"countMode": "<string>",
"rangeMin": "2023-11-07T05:31:56Z",
"rangeMax": "2023-11-07T05:31:56Z"
},
"enableCalendarInviteNotification": true,
"useSchedule": true,
"useCompanyLogo": true,
"useCustomInvite": true,
"disableActionButtons": true,
"useCustomForm": true,
"inCompanyPage": true,
"formFirst": true,
"locations": [
"<string>"
],
"compact": true,
"disableTeamsEmail": true,
"languageSetting": {
"enable": true,
"default": "<string>",
"allowed": [
"<string>"
]
},
"customTextSelectChannel": {
"enable": true,
"body": "<string>"
},
"timezonePreset": {
"enable": true,
"timezonePreset": "<string>"
},
"cssSetting": {
"mode": 123
},
"meetingPaymentInfo": {
"enable": true,
"price": 123,
"currency": "<string>",
"paymentTerms": "<string>",
"suffix": "<string>",
"providers": [],
"durationPrices": {
"30": 50,
"60": 90,
"90": 120
}
},
"videoSetting": {
"enable": true,
"immersive": true,
"src": "<string>",
"thumbnailUrl": "<string>"
},
"cancellationPolicy": {
"enable": true,
"duration": 123
},
"reschedulingPolicy": {
"enable": true,
"duration": 123
},
"recurringSetting": {
"enable": true,
"maxOccurrences": 123,
"minOccurrences": 123,
"maxSlots": 123,
"minSlots": 123
},
"lockedFields": [
"<string>"
],
"useHostAvailability": true,
"bookingFrequencies": [
{
"perDay": 123,
"perWeek": 123,
"perMonth": 123,
"perYear": 123
}
],
"companyId": "<string>",
"createdById": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>",
"formId": "<string>",
"availabilityId": "<string>",
"reminderIds": [
"<string>"
],
"assignedToCount": 123,
"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>"
}
]
}{
"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,
"bookingMinimum": 123,
"daysIntoFuture": {
"mode": "<string>",
"bookingLimit": 123,
"countMode": "<string>",
"rangeMin": "2023-11-07T05:31:56Z",
"rangeMax": "2023-11-07T05:31:56Z"
},
"enableCalendarInviteNotification": true,
"useSchedule": true,
"useCompanyLogo": true,
"useCustomInvite": true,
"disableActionButtons": true,
"useCustomForm": true,
"inCompanyPage": true,
"formFirst": true,
"locations": [
"<string>"
],
"compact": true,
"disableTeamsEmail": true,
"languageSetting": {
"enable": true,
"default": "<string>",
"allowed": [
"<string>"
]
},
"customTextSelectChannel": {
"enable": true,
"body": "<string>"
},
"timezonePreset": {
"enable": true,
"timezonePreset": "<string>"
},
"cssSetting": {
"mode": 123
},
"meetingPaymentInfo": {
"enable": true,
"price": 123,
"currency": "<string>",
"paymentTerms": "<string>",
"suffix": "<string>",
"providers": [],
"durationPrices": {
"30": 50,
"60": 90,
"90": 120
}
},
"videoSetting": {
"enable": true,
"immersive": true,
"src": "<string>",
"thumbnailUrl": "<string>"
},
"cancellationPolicy": {
"enable": true,
"duration": 123
},
"reschedulingPolicy": {
"enable": true,
"duration": 123
},
"recurringSetting": {
"enable": true,
"maxOccurrences": 123,
"minOccurrences": 123,
"maxSlots": 123,
"minSlots": 123
},
"lockedFields": [
"<string>"
],
"useHostAvailability": true,
"bookingFrequencies": [
{
"perDay": 123,
"perWeek": 123,
"perMonth": 123,
"perYear": 123
}
],
"companyId": "<string>",
"createdById": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>",
"formId": "<string>",
"availabilityId": "<string>",
"reminderIds": [
"<string>"
],
"assignedToCount": 123,
"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>"
}
]
}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
Number of available spots
x >= 1Available locations
["Office A", "Conference Room B", "Remote"]
Template type: individual (assigned to users) or team (assigned to workspaces)
individual, team Queue type for team templates
simpleRoundRobin, advancedRoundRobin, equalDistribution 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
individual, team Show child attributes
Show child attributes
simpleRoundRobin, advancedRoundRobin, equalDistribution Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
curl --request POST \
--url https://api.example.com/v4/meeting-type-template/create \
--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": {}
},
"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": {}
},
"spots": 2,
"locations": [
"Office A",
"Conference Room B",
"Remote"
]
}
'import requests
url = "https://api.example.com/v4/meeting-type-template/create"
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": {}
},
"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": {}
},
"spots": 2,
"locations": ["Office A", "Conference Room B", "Remote"]
}
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: {}
},
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: {}
},
spots: 2,
locations: ['Office A', 'Conference Room B', 'Remote']
})
};
fetch('https://api.example.com/v4/meeting-type-template/create', 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-template/create",
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' => [
]
],
'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' => [
]
],
'spots' => 2,
'locations' => [
'Office A',
'Conference Room B',
'Remote'
]
]),
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-template/create"
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 \"meetingOptions\": {\n \"allowedDurations\": [\n 15,\n 30,\n 60\n ],\n \"allowSelectChannel\": true,\n \"allowHostSelection\": true,\n \"forceHostSelection\": true,\n \"allowedChannels\": [],\n \"allowAddingGuests\": true,\n \"doubleOptIn\": \"<string>\",\n \"requireHostConfirmation\": \"<string>\",\n \"enableClusterMeeting\": true,\n \"enableBufferCarryOver\": true,\n \"maxBufferCarryOverDelay\": 123,\n \"allowPhoneOnlyBooking\": true,\n \"confirmationPageCssSetting\": {\n \"mode\": 123\n },\n \"bookingPagePassword\": {\n \"enable\": true,\n \"password\": {}\n },\n \"channelAvailabilities\": {}\n },\n \"spots\": 2,\n \"locations\": [\n \"Office A\",\n \"Conference Room B\",\n \"Remote\"\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-template/create")
.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 \"meetingOptions\": {\n \"allowedDurations\": [\n 15,\n 30,\n 60\n ],\n \"allowSelectChannel\": true,\n \"allowHostSelection\": true,\n \"forceHostSelection\": true,\n \"allowedChannels\": [],\n \"allowAddingGuests\": true,\n \"doubleOptIn\": \"<string>\",\n \"requireHostConfirmation\": \"<string>\",\n \"enableClusterMeeting\": true,\n \"enableBufferCarryOver\": true,\n \"maxBufferCarryOverDelay\": 123,\n \"allowPhoneOnlyBooking\": true,\n \"confirmationPageCssSetting\": {\n \"mode\": 123\n },\n \"bookingPagePassword\": {\n \"enable\": true,\n \"password\": {}\n },\n \"channelAvailabilities\": {}\n },\n \"spots\": 2,\n \"locations\": [\n \"Office A\",\n \"Conference Room B\",\n \"Remote\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v4/meeting-type-template/create")
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 \"meetingOptions\": {\n \"allowedDurations\": [\n 15,\n 30,\n 60\n ],\n \"allowSelectChannel\": true,\n \"allowHostSelection\": true,\n \"forceHostSelection\": true,\n \"allowedChannels\": [],\n \"allowAddingGuests\": true,\n \"doubleOptIn\": \"<string>\",\n \"requireHostConfirmation\": \"<string>\",\n \"enableClusterMeeting\": true,\n \"enableBufferCarryOver\": true,\n \"maxBufferCarryOverDelay\": 123,\n \"allowPhoneOnlyBooking\": true,\n \"confirmationPageCssSetting\": {\n \"mode\": 123\n },\n \"bookingPagePassword\": {\n \"enable\": true,\n \"password\": {}\n },\n \"channelAvailabilities\": {}\n },\n \"spots\": 2,\n \"locations\": [\n \"Office A\",\n \"Conference Room B\",\n \"Remote\"\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,
"bookingMinimum": 123,
"daysIntoFuture": {
"mode": "<string>",
"bookingLimit": 123,
"countMode": "<string>",
"rangeMin": "2023-11-07T05:31:56Z",
"rangeMax": "2023-11-07T05:31:56Z"
},
"enableCalendarInviteNotification": true,
"useSchedule": true,
"useCompanyLogo": true,
"useCustomInvite": true,
"disableActionButtons": true,
"useCustomForm": true,
"inCompanyPage": true,
"formFirst": true,
"locations": [
"<string>"
],
"compact": true,
"disableTeamsEmail": true,
"languageSetting": {
"enable": true,
"default": "<string>",
"allowed": [
"<string>"
]
},
"customTextSelectChannel": {
"enable": true,
"body": "<string>"
},
"timezonePreset": {
"enable": true,
"timezonePreset": "<string>"
},
"cssSetting": {
"mode": 123
},
"meetingPaymentInfo": {
"enable": true,
"price": 123,
"currency": "<string>",
"paymentTerms": "<string>",
"suffix": "<string>",
"providers": [],
"durationPrices": {
"30": 50,
"60": 90,
"90": 120
}
},
"videoSetting": {
"enable": true,
"immersive": true,
"src": "<string>",
"thumbnailUrl": "<string>"
},
"cancellationPolicy": {
"enable": true,
"duration": 123
},
"reschedulingPolicy": {
"enable": true,
"duration": 123
},
"recurringSetting": {
"enable": true,
"maxOccurrences": 123,
"minOccurrences": 123,
"maxSlots": 123,
"minSlots": 123
},
"lockedFields": [
"<string>"
],
"useHostAvailability": true,
"bookingFrequencies": [
{
"perDay": 123,
"perWeek": 123,
"perMonth": 123,
"perYear": 123
}
],
"companyId": "<string>",
"createdById": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>",
"formId": "<string>",
"availabilityId": "<string>",
"reminderIds": [
"<string>"
],
"assignedToCount": 123,
"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>"
}
]
}{
"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,
"bookingMinimum": 123,
"daysIntoFuture": {
"mode": "<string>",
"bookingLimit": 123,
"countMode": "<string>",
"rangeMin": "2023-11-07T05:31:56Z",
"rangeMax": "2023-11-07T05:31:56Z"
},
"enableCalendarInviteNotification": true,
"useSchedule": true,
"useCompanyLogo": true,
"useCustomInvite": true,
"disableActionButtons": true,
"useCustomForm": true,
"inCompanyPage": true,
"formFirst": true,
"locations": [
"<string>"
],
"compact": true,
"disableTeamsEmail": true,
"languageSetting": {
"enable": true,
"default": "<string>",
"allowed": [
"<string>"
]
},
"customTextSelectChannel": {
"enable": true,
"body": "<string>"
},
"timezonePreset": {
"enable": true,
"timezonePreset": "<string>"
},
"cssSetting": {
"mode": 123
},
"meetingPaymentInfo": {
"enable": true,
"price": 123,
"currency": "<string>",
"paymentTerms": "<string>",
"suffix": "<string>",
"providers": [],
"durationPrices": {
"30": 50,
"60": 90,
"90": 120
}
},
"videoSetting": {
"enable": true,
"immersive": true,
"src": "<string>",
"thumbnailUrl": "<string>"
},
"cancellationPolicy": {
"enable": true,
"duration": 123
},
"reschedulingPolicy": {
"enable": true,
"duration": 123
},
"recurringSetting": {
"enable": true,
"maxOccurrences": 123,
"minOccurrences": 123,
"maxSlots": 123,
"minSlots": 123
},
"lockedFields": [
"<string>"
],
"useHostAvailability": true,
"bookingFrequencies": [
{
"perDay": 123,
"perWeek": 123,
"perMonth": 123,
"perYear": 123
}
],
"companyId": "<string>",
"createdById": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>",
"formId": "<string>",
"availabilityId": "<string>",
"reminderIds": [
"<string>"
],
"assignedToCount": 123,
"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>"
}
]
}