Delete Warehouse

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://docs.maddenanalytics.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Madden Analytics API MCP server": {
    "url": "https://docs.maddenanalytics.com/mcp"
  }
}

Close
DELETE /v2/api/warehouses/{externalWarehouseID}

Delete a specific Warehouse using externalWarehouseID.

Path parameters

  • externalWarehouseID string Required

    External Warehouse ID

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • error string
    • message string
    • statusCode integer
  • default application/json

    All errors will return the same object with a describing code & message

    Hide response attributes Show response attributes object
    • error string
    • message string
    • statusCode integer
DELETE /v2/api/warehouses/{externalWarehouseID}
curl \
 --request DELETE 'https://api.maddenanalytics.com/v2/api/warehouses/{externalWarehouseID}'
Response examples (200)
{
  "error": "Error Type (if any)",
  "message": "Message describing the error",
  "statusCode": 400
}
Response examples (default)
{
  "error": "Error Type (if any)",
  "message": "Message describing the error",
  "statusCode": 400
}