Get all condition types for the brokerage.

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/deals-api/mcp

Standard setup for AI tools providing an mcp.json file

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

Close
GET /condition-types

Retrieves all condition types for the brokerage.

Responses

  • 200 application/json

    Condition Types found.

  • 401

    Unauthorized request. See response body for details.

  • 403

    Permission denied. See response body for details.

  • 500

    Unknown error. See response body for details.

GET /condition-types
curl \
 --request GET 'http://api.example.com/condition-types' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {}
]