GET
/
hubs
/
{hub_id}
/
integrations
curl --request GET \
  --url https://platform.versori.com/api/embedded/v1/hubs/{hub_id}/integrations
{
  "total": 123,
  "integrations": [
    {
      "id": "<string>",
      "name": "<string>",
      "imageUrl": "<string>",
      "screenshotUrl": "<string>",
      "description": "<string>",
      "variablesSchema": {},
      "boardId": "<string>"
    }
  ]
}

Path Parameters

hub_id
string
required

Query Parameters

first
integer
default:20
before
string
after
string

Search is a string that is used to filter the list of Integrations. The search string is matched against the name.

Response

200
application/json
OK
total
integer
required

Total integrations for the given Hub

integrations
object[]
required

Integration represents an embedded integration that can be activated by end users.