List tenants - Fluid Topics - Latest

Fluid Topics API Reference Guide

Category
Reference Guides
Audience
public
Version
Latest

This web service returns the list of Fluid Topics tenants hosted on the server.

Method Endpoint
GET /api/tenants

The /tenants API can be very costly as it scans ALL tenants hosted on the server.

Response body

[
  {
    "serviceInstance": {
      "id": 1,
      "status": "STABLE"
    },
    "projectName": "Antidot Technical Publications",
    "health": "DOWN",
    "configurationStatus": {
      "status": "OK"
    },
    "url": "https://$SERVER:PORT/1/stable/"
  },
  {
    "serviceInstance": {
      "id": 7,
      "status": "STABLE"
    },
    "projectName": "FT DOCKER",
    "health": "UP",
    "configurationStatus": {
      "status": "OK"
    },
    "url": "https://$SERVER:PORT/7/stable/"
  },
  {
    "serviceInstance": {
      "id": 8,
      "status": "STABLE"
    },
    "projectName": "Antidot Technical Publications",
    "health": "UP",
    "configurationStatus": {
      "status": "OK"
    },
    "url": "https://$SERVER:PORT/8/stable/"
  }
]