[BETA] List all DBaaS connections between services and external endpoints

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://openapi-v2.exoscale.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Exoscale APIv2 MCP server": {
  "url": "https://openapi-v2.exoscale.com/mcp"
}
Close
GET /dbaas-external-integrations/{service-name}

[BETA] List all DBaaS connections between services and external endpoints

Path parameters

  • service-name string Required

    Minimum length is 0, maximum length is 63.

Responses

  • 200 application/json

    200

    Hide response attribute Show response attribute object
    • external-integrations array[object]
      Hide external-integrations attributes Show external-integrations attributes object

      Integrations with other services

      • description string Required

        Description of the integration

      • dest-endpoint-name string

        External destination endpoint name

      • dest-endpoint-id string

        External destination endpoint id

      • integration-id string(uuid)

        Endpoint integration UUID

      • status string

        Integration status

      • source-service-name string Required

        DBaaS source service name

      • source-service-type string Required

        Minimum length is 0, maximum length is 64.

      • type string Required

        Values are prometheus, opensearch, rsyslog, datadog, or elasticsearch.

GET /dbaas-external-integrations/{service-name}
curl \
 --request GET 'https://api-ch-gva-2.exoscale.com/v2/dbaas-external-integrations/{service-name}'
Response examples (200)
{
  "external-integrations": [
    {
      "description": "string",
      "dest-endpoint-name": "string",
      "dest-endpoint-id": "string",
      "integration-id": "string",
      "status": "string",
      "source-service-name": "string",
      "source-service-type": "string",
      "type": "prometheus"
    }
  ]
}