User actions
Get all information about your profile
GET
https://app.zencal.io/api/v1/profile
The method returns information on the user to whom the API key applies
{
"email": "joe.smith@hotmail.com"
"username": "joe-smith",
"phone": "+32100200300",
"firstName": "Joe",
"lastName": "Smith",
"avatar": "https://cdn.zencal.io/avatar.png",
"availableMeetingPlaces": [
{
"value": "zoom",
"name": "Zoom"
},
{
"value": "google-meet",
"name": "Google Meet"
}
]
}
Update your profile information
PATCH
https://app.zencal.io/api/v1/profile
Request Body
{
"email": "joe.smith@hotmail.com"
"username": "joe-smith",
"phone": "+32100200300",
"firstName": "Joe",
"lastName": "Smith",
"avatar": "https://cdn.zencal.io/avatar.png",
"availableMeetingPlaces": [
{
"value": "zoom",
"name": "Zoom"
},
{
"value": "google-meet",
"name": "Google Meet"
}
]
}