PATCH
/
v2
/
teams
/
{teamId}
curl --request PATCH \
  --url https://api.cal.com/v2/teams/{teamId} \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "CalTeam",
  "slug": "caltel",
  "logoUrl": "https://i.cal.com/api/avatar/b0b58752-68ad-4c0d-8024-4fa382a77752.png",
  "calVideoLogo": "<string>",
  "appLogo": "<string>",
  "appIconLogo": "<string>",
  "bio": "<string>",
  "hideBranding": true,
  "isPrivate": true,
  "hideBookATeamMember": true,
  "metadata": "<string>",
  "theme": "<string>",
  "brandColor": "<string>",
  "darkBrandColor": "<string>",
  "bannerUrl": "https://i.cal.com/api/avatar/949be534-7a88-4185-967c-c020b0c0bef3.png",
  "timeFormat": 123,
  "timeZone": "America/New_York",
  "weekStart": "Monday",
  "bookingLimits": "<string>",
  "includeManagedEventsInLimits": true
}'
{
  "status": "success",
  "data": {
    "id": 123,
    "parentId": 123,
    "name": "<string>",
    "slug": "<string>",
    "logoUrl": "<string>",
    "calVideoLogo": "<string>",
    "appLogo": "<string>",
    "appIconLogo": "<string>",
    "bio": "<string>",
    "hideBranding": true,
    "isOrganization": true,
    "isPrivate": true,
    "hideBookATeamMember": false,
    "metadata": "<string>",
    "theme": "<string>",
    "brandColor": "<string>",
    "darkBrandColor": "<string>",
    "bannerUrl": "<string>",
    "timeFormat": 123,
    "timeZone": "Europe/London",
    "weekStart": "Sunday"
  }
}

Path Parameters

teamId
number
required

Body

application/json
name
string

Name of the team

Minimum length: 1
Example:

"CalTeam"

slug
string

Team slug

Example:

"caltel"

logoUrl
string

URL of the teams logo image

Example:

"https://i.cal.com/api/avatar/b0b58752-68ad-4c0d-8024-4fa382a77752.png"

bio
string
hideBranding
boolean
isPrivate
boolean
hideBookATeamMember
boolean
metadata
string
theme
string
brandColor
string
darkBrandColor
string
bannerUrl
string

URL of the teams banner image which is shown on booker

Example:

"https://i.cal.com/api/avatar/949be534-7a88-4185-967c-c020b0c0bef3.png"

timeFormat
number
timeZone
string

Timezone is used to create teams's default schedule from Monday to Friday from 9AM to 5PM. It will default to Europe/London if not passed.

Example:

"America/New_York"

weekStart
string
Example:

"Monday"

bookingLimits
string
includeManagedEventsInLimits
boolean

Response

200 - application/json
status
enum<string>
required
Available options:
success,
error
Example:

"success"

data
object
required