curl --request GET \
--url https://platform.versori.com/api/embedded/v1/hubs/{hub_id} \
--header 'Authorization: Bearer <token>'{
"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
}GetHub returns the Hub for the given ID.
curl --request GET \
--url https://platform.versori.com/api/embedded/v1/hubs/{hub_id} \
--header 'Authorization: Bearer <token>'{
"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
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
OK
A Hub description
The ID of the Hub
The name of the Hub
PrimaryConnector is the connector that the Hub is built around.
Show child attributes
IsDefault indicates whether this Hub is the default Hub for the organisation. Only one Hub can be the default Hub for an organisation.