curl --request GET \
--url https://platform.versori.com/api/embedded/v1/hubs/{hub_id}/integrations \
--header 'Authorization: Bearer <token>'{
"total": 123,
"integrations": [
{
"id": "<string>",
"name": "<string>",
"boardId": "<string>",
"imageUrl": "<string>",
"screenshotUrl": "<string>",
"description": "<string>",
"variablesSchema": {}
}
]
}ListIntegrations returns all the integrations for the given Hub.
This API should not be exposed to End Users via the embedded UI since it includes integrations which have not been published.
curl --request GET \
--url https://platform.versori.com/api/embedded/v1/hubs/{hub_id}/integrations \
--header 'Authorization: Bearer <token>'{
"total": 123,
"integrations": [
{
"id": "<string>",
"name": "<string>",
"boardId": "<string>",
"imageUrl": "<string>",
"screenshotUrl": "<string>",
"description": "<string>",
"variablesSchema": {}
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Search is a string that is used to filter the list of Integrations. The search string is matched against the name.