Get Brand Config Versions

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.thankly.ai/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Thankly MCP server": {
    "url": "https://docs.thankly.ai/mcp"
  }
}

Close
GET /brand-config/versions

Responses

  • 200 application/json

    Successful Response

    Hide response attribute Show response attribute object
    • versions array[object] Required
      Hide versions attributes Show versions attributes object
      • version integer Required
      • config object Required

        Additional properties are allowed.

      • created_at string | null
GET /brand-config/versions
curl \
 --request GET 'http://api.example.com/brand-config/versions' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "versions": [
    {
      "version": 42,
      "config": {},
      "created_at": "string"
    }
  ]
}