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>"
}
]
}
}
'User ID to act as when using API Key authentication (required with API Key)
If true, show all user meeting types on business card. If false, show only selected meeting types.
Show child attributes
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>"
}
]
}
}
'