Skip to main content
GET
/
teams
teams
curl --request GET \
  --url https://api.windermere.com/v1/api/teams \
  --header 'x-api-key: <api-key>'
[
  {
    "uuid": "feedface-dead-beef-aadf-baddeedc645",
    "name": "New Team One",
    "email": "email@address",
    "address1": "1234 Here St.",
    "address2": "Suite: 1234",
    "city": "Sweetville",
    "zipcode": "91820",
    "state": "OR",
    "phone": "666-555-1234",
    "fax": "666-867-5309",
    "logo_url": "http://website.url/logo.png",
    "photo_url": "http://website.url/image.jpg",
    "description": "",
    "social_media_urls": null,
    "alt_phone": "666-555-4444",
    "alt_email": "alternate@email.address",
    "website_url": "http://the.team.website",
    "active": true
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.windermere.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Query Parameters

moxi_works_company_id
string
required

A valid MoxiWorks Company ID. Use Company Endpoint to determine what moxi_works_company_id you can use.

Response

200 - application/json
uuid
string
name
string
email
string
address1
string
address2
string
city
string
zipcode
string
state
string
phone
string
fax
string
logo_url
string
photo_url
string
description
string
social_media_urls
any
alt_phone
string
alt_email
string
website_url
string
active
boolean
Example:
[
{
"uuid": "feedface-dead-beef-aadf-baddeedc645",
"name": "New Team One",
"email": "email@address",
"address1": "1234 Here St.",
"address2": "Suite: 1234",
"city": "Sweetville",
"zipcode": "91820",
"state": "OR",
"phone": "666-555-1234",
"fax": "666-867-5309",
"logo_url": "http://website.url/logo.png",
"photo_url": "http://website.url/image.jpg",
"description": "",
"social_media_urls": null,
"alt_phone": "666-555-4444",
"alt_email": "alternate@email.address",
"website_url": "http://the.team.website",
"active": true
}
]