Teams
Update a team
Update a team for the authenticated workspace. If there’s no change, returns it as it is.
patch/teams/{id}
Path parameters
idstring uuid required
Unique identifier of the team
Example:123e4567-e89b-12d3-a456-426614174000
Unique identifier of the team
Request body
Example request
{
"name": "Acme Corporation",
"email": "team@acme.com",
"logoUrl": "https://cdn.midday.ai/logos/acme-corp.png",
"baseCurrency": "USD",
"countryCode": "US",
"fiscalYearStartMonth": 4,
"companyType": "solo_founder",
"heardAbout": "twitter"
}Response
Team updated
Example response
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Acme Corporation",
"logoUrl": "https://cdn.midday.ai/logos/acme-corp.png",
"plan": "pro",
"email": "team@acme.com",
"baseCurrency": "USD",
"countryCode": "US",
"fiscalYearStartMonth": 1
}