Get List of Teams for an Agent

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://apidocs.lwolf.com/doc/zipform-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "ZipForm API MCP server": {
    "url": "https://apidocs.lwolf.com/doc/zipform-api/mcp"
  }
}

Close
POST /teams

Returns the list of teams the authenticated agent belongs to. A team may be a standalone team or a brokerage team. Returns an empty response if the agent is not part of any team.

Responses

  • 200 application/json

    Team list returned successfully

    Hide response attributes Show response attributes object
    • teamId string
    • name string
    • address string
    • created string(date-time)
  • 401

    Unauthorized

POST /teams
curl \
 --request POST 'https://ws.zipformplus.com/api/teams' \
 --header "X-Auth-ContextId: $API_KEY"
Response examples (200)
[
  {
    "teamId": "string",
    "name": "string",
    "address": "string",
    "created": "2026-05-04T09:42:00Z"
  }
]