Personal Page V4
Get personal page of the requesting user
GET
/
v4
/
personal-page
/
me
Get personal page of the requesting user
curl --request GET \
--url https://api.example.com/v4/personal-page/me \
--header 'x-meetergo-api-user-id: <api-key>'import requests
url = "https://api.example.com/v4/personal-page/me"
headers = {"x-meetergo-api-user-id": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-meetergo-api-user-id': '<api-key>'}};
fetch('https://api.example.com/v4/personal-page/me', 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/personal-page/me",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v4/personal-page/me"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-meetergo-api-user-id", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v4/personal-page/me")
.header("x-meetergo-api-user-id", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v4/personal-page/me")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-meetergo-api-user-id"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"useCustomColors": true,
"primaryColor": "<string>",
"secondaryColor": "<string>",
"description": "<string>",
"onlineProfiles": {
"linkedIn": "<string>",
"facebook": "<string>",
"twitter": "<string>",
"instagram": "<string>",
"xing": "<string>",
"phone": "<string>",
"email": "<string>",
"customLinks": [
{
"name": "<string>",
"url": "<string>",
"icon": "<string>"
}
],
"addressStreet": "<string>",
"addressCity": "<string>",
"addressPostalCode": "<string>",
"addressCountry": "<string>"
},
"headerImage": "<string>",
"meetingTypes": [
{
"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": {}
},
"spots": 123,
"enabled": true,
"slug": "<string>",
"companyId": "<string>",
"locations": [
"<string>"
],
"isGlobalQueue": true,
"createdById": "<string>",
"createdAt": "<string>",
"formId": "<string>",
"communicationSettingsId": 123,
"availabilityId": "<string>",
"queueId": "<string>",
"workspaceId": "<string>",
"userId": "<string>",
"deletedAt": "<string>",
"resourceChannelIds": [
"<string>"
]
}
]
}{
"useCustomColors": true,
"primaryColor": "<string>",
"secondaryColor": "<string>",
"description": "<string>",
"onlineProfiles": {
"linkedIn": "<string>",
"facebook": "<string>",
"twitter": "<string>",
"instagram": "<string>",
"xing": "<string>",
"phone": "<string>",
"email": "<string>",
"customLinks": [
{
"name": "<string>",
"url": "<string>",
"icon": "<string>"
}
],
"addressStreet": "<string>",
"addressCity": "<string>",
"addressPostalCode": "<string>",
"addressCountry": "<string>"
},
"headerImage": "<string>",
"meetingTypes": [
{
"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": {}
},
"spots": 123,
"enabled": true,
"slug": "<string>",
"companyId": "<string>",
"locations": [
"<string>"
],
"isGlobalQueue": true,
"createdById": "<string>",
"createdAt": "<string>",
"formId": "<string>",
"communicationSettingsId": 123,
"availabilityId": "<string>",
"queueId": "<string>",
"workspaceId": "<string>",
"userId": "<string>",
"deletedAt": "<string>",
"resourceChannelIds": [
"<string>"
]
}
]
}Authorizations
ApiUserHeaderJWTApiKey
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.
Response
Whether custom colors are enabled for the personal page
Primary color for the personal page theme
Secondary color for the personal page theme
Personal page description text
Online profiles and social media links
Show child attributes
Show child attributes
Header image URL for the personal page
Meeting types assigned to this personal page
Show child attributes
Show child attributes
⌘I
Get personal page of the requesting user
curl --request GET \
--url https://api.example.com/v4/personal-page/me \
--header 'x-meetergo-api-user-id: <api-key>'import requests
url = "https://api.example.com/v4/personal-page/me"
headers = {"x-meetergo-api-user-id": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-meetergo-api-user-id': '<api-key>'}};
fetch('https://api.example.com/v4/personal-page/me', 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/personal-page/me",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v4/personal-page/me"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-meetergo-api-user-id", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v4/personal-page/me")
.header("x-meetergo-api-user-id", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v4/personal-page/me")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-meetergo-api-user-id"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"useCustomColors": true,
"primaryColor": "<string>",
"secondaryColor": "<string>",
"description": "<string>",
"onlineProfiles": {
"linkedIn": "<string>",
"facebook": "<string>",
"twitter": "<string>",
"instagram": "<string>",
"xing": "<string>",
"phone": "<string>",
"email": "<string>",
"customLinks": [
{
"name": "<string>",
"url": "<string>",
"icon": "<string>"
}
],
"addressStreet": "<string>",
"addressCity": "<string>",
"addressPostalCode": "<string>",
"addressCountry": "<string>"
},
"headerImage": "<string>",
"meetingTypes": [
{
"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": {}
},
"spots": 123,
"enabled": true,
"slug": "<string>",
"companyId": "<string>",
"locations": [
"<string>"
],
"isGlobalQueue": true,
"createdById": "<string>",
"createdAt": "<string>",
"formId": "<string>",
"communicationSettingsId": 123,
"availabilityId": "<string>",
"queueId": "<string>",
"workspaceId": "<string>",
"userId": "<string>",
"deletedAt": "<string>",
"resourceChannelIds": [
"<string>"
]
}
]
}{
"useCustomColors": true,
"primaryColor": "<string>",
"secondaryColor": "<string>",
"description": "<string>",
"onlineProfiles": {
"linkedIn": "<string>",
"facebook": "<string>",
"twitter": "<string>",
"instagram": "<string>",
"xing": "<string>",
"phone": "<string>",
"email": "<string>",
"customLinks": [
{
"name": "<string>",
"url": "<string>",
"icon": "<string>"
}
],
"addressStreet": "<string>",
"addressCity": "<string>",
"addressPostalCode": "<string>",
"addressCountry": "<string>"
},
"headerImage": "<string>",
"meetingTypes": [
{
"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": {}
},
"spots": 123,
"enabled": true,
"slug": "<string>",
"companyId": "<string>",
"locations": [
"<string>"
],
"isGlobalQueue": true,
"createdById": "<string>",
"createdAt": "<string>",
"formId": "<string>",
"communicationSettingsId": 123,
"availabilityId": "<string>",
"queueId": "<string>",
"workspaceId": "<string>",
"userId": "<string>",
"deletedAt": "<string>",
"resourceChannelIds": [
"<string>"
]
}
]
}