v1

latestOpenAPI 3.1.0AGPL-3.0 license2026-07-1210336283.6 KB
Teams

Retrieve a team

Retrieve a team by its ID for the authenticated team.

get/teams/{id}

Path parameters

idstring uuid required

Unique identifier of the team

Example:123e4567-e89b-12d3-a456-426614174000

Unique identifier of the team

Response

Team details

idstring uuid required

Unique identifier of the team

namestring required

Name of the team or organization

logoUrlstring uri nullable required

URL to the team's logo image

plan'trial' | 'starter' | 'pro' required

Current subscription plan of the team

emailstring email nullable

Primary contact email address for the team

baseCurrencystring nullable

Base currency for the team in ISO 4217 format (3-letter currency code)

countryCodestring nullable

Country code for the team in ISO 3166-1 alpha-2 format

fiscalYearStartMonthinteger nullable

Month when the fiscal year starts (1-12). Null for trailing 12 months.

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
}