curl --request GET \
--url https://platform.versori.com/api/embedded/v1/o/{organisation_id}/hubs \
--header 'Authorization: Bearer <token>'{
"totalCount": 123,
"hubs": [
{
"id": "<string>",
"name": "<string>",
"primaryConnector": {
"connectorId": "<string>",
"name": "<string>",
"authSchemeConfig": {
"id": "<string>",
"description": "<string>",
"schemeType": "<string>",
"validationMessages": [
{
"text": "<string>",
"severity": "info",
"detail": [
"<string>"
]
}
]
},
"imageUrl": "<string>",
"variables": [
{
"name": "<string>",
"value": "<string>"
}
]
},
"isDefault": true
}
],
"next": "<string>",
"prev": "<string>"
}ListHubs returns all the hubs for the given organisation, but is returned as a paginated list.
curl --request GET \
--url https://platform.versori.com/api/embedded/v1/o/{organisation_id}/hubs \
--header 'Authorization: Bearer <token>'{
"totalCount": 123,
"hubs": [
{
"id": "<string>",
"name": "<string>",
"primaryConnector": {
"connectorId": "<string>",
"name": "<string>",
"authSchemeConfig": {
"id": "<string>",
"description": "<string>",
"schemeType": "<string>",
"validationMessages": [
{
"text": "<string>",
"severity": "info",
"detail": [
"<string>"
]
}
]
},
"imageUrl": "<string>",
"variables": [
{
"name": "<string>",
"value": "<string>"
}
]
},
"isDefault": true
}
],
"next": "<string>",
"prev": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.