curl --request PATCH \
--url https://api.example.com/availability/{id} \
--header 'Content-Type: application/json' \
--header 'x-meetergo-api-user-id: <api-key>' \
--data '
{
"name": "<string>",
"schedule": {
"monday": {
"enabled": true,
"hours": [
{
"start": "<string>",
"end": "<string>"
}
]
},
"tuesday": {
"enabled": true,
"hours": [
{
"start": "<string>",
"end": "<string>"
}
]
},
"wednesday": {
"enabled": true,
"hours": [
{
"start": "<string>",
"end": "<string>"
}
]
},
"thursday": {
"enabled": true,
"hours": [
{
"start": "<string>",
"end": "<string>"
}
]
},
"friday": {
"enabled": true,
"hours": [
{
"start": "<string>",
"end": "<string>"
}
]
},
"saturday": {
"enabled": true,
"hours": [
{
"start": "<string>",
"end": "<string>"
}
]
},
"sunday": {
"enabled": true,
"hours": [
{
"start": "<string>",
"end": "<string>"
}
]
}
},
"timezone": "<string>",
"useExplicitAvailability": true,
"explicitAvailabilityEventTitle": "<string>"
}
'User ID to act as when using API Key authentication (required with API Key)
curl --request PATCH \
--url https://api.example.com/availability/{id} \
--header 'Content-Type: application/json' \
--header 'x-meetergo-api-user-id: <api-key>' \
--data '
{
"name": "<string>",
"schedule": {
"monday": {
"enabled": true,
"hours": [
{
"start": "<string>",
"end": "<string>"
}
]
},
"tuesday": {
"enabled": true,
"hours": [
{
"start": "<string>",
"end": "<string>"
}
]
},
"wednesday": {
"enabled": true,
"hours": [
{
"start": "<string>",
"end": "<string>"
}
]
},
"thursday": {
"enabled": true,
"hours": [
{
"start": "<string>",
"end": "<string>"
}
]
},
"friday": {
"enabled": true,
"hours": [
{
"start": "<string>",
"end": "<string>"
}
]
},
"saturday": {
"enabled": true,
"hours": [
{
"start": "<string>",
"end": "<string>"
}
]
},
"sunday": {
"enabled": true,
"hours": [
{
"start": "<string>",
"end": "<string>"
}
]
}
},
"timezone": "<string>",
"useExplicitAvailability": true,
"explicitAvailabilityEventTitle": "<string>"
}
'