Get all business contacts

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 /deals/{dealId}/business-contacts

Using the deal guid in the request path, the method requests the associated business contacts.

Responses

  • 200 application/json

    Retrieved business contacts successfully.

  • 400

    Invalid request. See response body for details.

  • 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 /deals/{dealId}/business-contacts
curl \
 --request GET 'http://api.example.com/deals/{dealId}/business-contacts' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {}
]