GET
/
o
/
{organisation_id}
/
hubs
curl --request GET \
  --url https://platform.versori.com/api/embedded/v1/o/{organisation_id}/hubs
{
  "totalCount": 123,
  "next": "<string>",
  "prev": "<string>",
  "hubs": [
    {
      "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

organisation_id
string
required

Response

200
application/json

OK

HubsPage contains a list of hubs using Versori's pagination response types. Initially the ListHubs endpoint will return all hubs, but this is subject to change in the future and may become paginated.