This web service returns all remote portals configured on the portal, along with their connectivity status.
- This web service is available to users or API keys with the
ADMINrole. - It is necessary to provide an
Ft-Calling-Appvalue when using Fluid Topics web services. See Fluid Topics calling app.
| Method | Endpoint |
|---|---|
GET |
|
Response body
The following example shows a JSON response body for this web service:
[
{
"id": "remote-abc",
"baseUrl": "https://other-portal.fluidtopics.com",
"status": {
"status": "OK",
"remoteServerVersion": "4.5.0"
}
}
]
| Field | Type | Description |
|---|---|---|
id |
String | Unique identifier of the remote portal. |
baseUrl |
String | Base URL of the remote Fluid Topics portal. |
status |
Object | Connectivity status of the remote portal. |
status |
String | Connection status. Possible values are:
|
remoteServerVersion |
String | Version of the remote Fluid Topics server. Only present when the connection status is OK or version is INCOMPATIBLE. |
| Return code | Description |
|---|---|
200 OK |
Returns the list of remote portals. |
401 UNAUTHORIZED |
The authorization header is absent or invalid. |
403 FORBIDDEN |
The user or API key must be an ADMIN. |
For a comprehensive list of all possible return codes, see Return codes.