GET
/
hubs
/
{hub_id}
curl --request GET \
  --url https://platform.versori.com/api/embedded/v1/hubs/{hub_id}
{
  "id": "<string>",
  "name": "<string>",
  "primaryConnector": {
    "connectorId": "<string>",
    "name": "<string>",
    "authSchemeConfig": {
      "id": "<string>",
      "description": "<string>",
      "validationMessages": [
        {
          "text": "<string>",
          "severity": "info",
          "detail": [
            "<string>"
          ]
        }
      ],
      "schemeType": "<string>"
    },
    "imageUrl": "<string>",
    "variables": [
      {
        "name": "<string>",
        "value": "<string>"
      }
    ]
  },
  "isDefault": true
}

Path Parameters

hub_id
string
required

Response

200
application/json
OK

A Hub description

id
string
required

The ID of the Hub

name
string
required

The name of the Hub

primaryConnector
object
required

PrimaryConnector is the connector that the Hub is built around.

isDefault
boolean
required

IsDefault indicates whether this Hub is the default Hub for the organisation. Only one Hub can be the default Hub for an organisation.