Skip to main content
PATCH
/
v4
/
personal-page
/
me
Update personal page of the requesting user
curl --request PATCH \
  --url https://api.example.com/v4/personal-page/me \
  --header 'Content-Type: application/json' \
  --header 'x-meetergo-api-user-id: <api-key>' \
  --data '
{
  "useCustomColors": true,
  "primaryColor": "<string>",
  "secondaryColor": "<string>",
  "headerImage": "<string>",
  "description": "<string>",
  "showAllMeetingTypes": true,
  "meetingTypeOrder": [
    "<string>"
  ],
  "onlineProfiles": {
    "linkedIn": "<string>",
    "facebook": "<string>",
    "twitter": "<string>",
    "instagram": "<string>",
    "xing": "<string>",
    "phone": "<string>",
    "email": "<string>",
    "customLinks": [
      {
        "name": "<string>",
        "url": "<string>",
        "icon": "<string>"
      }
    ]
  }
}
'

Authorizations

x-meetergo-api-user-id
string
header
required

User ID to act as when using API Key authentication (required with API Key)

Body

application/json
useCustomColors
boolean
primaryColor
string
secondaryColor
string
headerImage
string | null
description
string
showAllMeetingTypes
boolean
default:true

If true, show all user meeting types on business card. If false, show only selected meeting types.

meetingTypeOrder
string[]
onlineProfiles
object

Response

200 - undefined