POST
/
hubs
/
{hub_id}
/
integrations
curl --request POST \
  --url https://platform.versori.com/api/embedded/v1/hubs/{hub_id}/integrations \
  --header 'Content-Type: application/json' \
  --data '{
  "connectionTemplate": {
    "authSchemeConfig": {
      "id": "<string>",
      "description": "<string>",
      "validationMessages": [
        {
          "text": "<string>",
          "severity": "info",
          "detail": [
            "<string>"
          ]
        }
      ],
      "schemeType": "<string>"
    },
    "connectorId": "<string>"
  },
  "description": "My Integration to a shiny new service",
  "summary": "My Integration to a shiny new service",
  "name": "<string>",
  "variablesSchema": {},
  "organisationId": "<string>"
}'
{
  "id": "<string>",
  "name": "<string>",
  "imageUrl": "<string>",
  "screenshotUrl": "<string>",
  "description": "<string>",
  "variablesSchema": {},
  "boardId": "<string>"
}

Path Parameters

hub_id
string
required

Body

application/json

IntegrationCreate contains the payload to create a new Embedded Integration.

Response

200
application/json

OK

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