DELETE /teams/{id}

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/propertybase/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "PropertyBase MCP server": {
    "url": "https://apidocs.lwolf.com/doc/propertybase/mcp"
  }
}

Close
DELETE /teams/{id}

Path parameters

  • id string Required

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • status string Required

      Response status indicator

      Values are success or failure.

    • message string Required

      Human-readable response message

    • data

      Response data - structure varies by endpoint. Can be object or array.

  • 400

    Bad Request

  • 401

    Unauthorized - Invalid or missing API key

  • 403

    Forbidden - Insufficient permissions

DELETE /teams/{id}
curl \
 --request DELETE 'https://api.propertybase.com/api/v2/teams/{id}' \
 --header "X-BL-API-Key: $API_KEY"
Response examples (200)
{
  "status": "success",
  "message": "string"
}