List integration schemas for the spot

GET /v1/integrationSchemas

List integration schemas for the spot

Responses

  • 200 application/json

    List of integration schemas

    Hide response attribute Show response attribute object
    • items array[object] Required

      The list of integration schema responses

      Hide items attributes Show items attributes object
      • id string Required

        The ID of the integration

      • integration string Required

        The name of the integration

      • baseUrls array[string] Required

        The base URLs for the integration

      • themeMode string Required

        The theme mode for the integration

        Values are light, dark, or system.

      • touchPoints array[object] Required

        The touch points for the integration

GET /v1/integrationSchemas
curl \
 --request GET 'https://openapi.meltingspot.io/v1/integrationSchemas'
Response examples (200)
{
  "items": [
    {
      "id": "string",
      "integration": "string",
      "baseUrls": [
        "string"
      ],
      "themeMode": "light",
      "touchPoints": [
        {}
      ]
    }
  ]
}