Get the sync status of the deal with brokerWOLF

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}/bw-sync-status

Using the deal guid in the request path, the method requests the sync status with Broker Wolf

Responses

  • 200 application/json

    Retrieved deal sync status 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.

  • 404 application/json

    Deal Sync Status not found.

    Hide response attributes Show response attributes object
    • code integer(int32)
    • message string
    • details array[string]
  • 412

    Optimistic concurrency check failed. The If-Match header is missing or it does not contain the version currently in the database.

  • 500

    Unknown error. See response body for details.

GET /deals/{dealId}/bw-sync-status
curl \
 --request GET 'http://api.example.com/deals/{dealId}/bw-sync-status' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{}
Response examples (404)
{
  "code": 42,
  "message": "string",
  "details": [
    "string"
  ]
}