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": [
{}
],
"schemeType": "<string>"
},
"imageUrl": "<string>",
"variables": [
{
"name": "<string>",
"value": "<string>"
}
]
},
"isDefault": true
}
]
}
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
{
"totalCount": 123,
"next": "<string>",
"prev": "<string>",
"hubs": [
{
"id": "<string>",
"name": "<string>",
"primaryConnector": {
"connectorId": "<string>",
"name": "<string>",
"authSchemeConfig": {
"id": "<string>",
"description": "<string>",
"validationMessages": [
{}
],
"schemeType": "<string>"
},
"imageUrl": "<string>",
"variables": [
{
"name": "<string>",
"value": "<string>"
}
]
},
"isDefault": true
}
]
}