GET
/
integrations
/
{integration_id}
/
connection-templates
curl --request GET \
  --url https://platform.versori.com/api/embedded/v1/integrations/{integration_id}/connection-templates
{
  "totalCount": 123,
  "next": "<string>",
  "prev": "<string>",
  "connectionTemplates": [
    {
      "id": "<string>",
      "connectorId": "<string>",
      "imageUrl": "<string>",
      "name": "<string>",
      "isUsed": true,
      "isPrimary": true,
      "authSchemeConfig": {
        "id": "<string>",
        "description": "<string>",
        "validationMessages": [
          {
            "text": "<string>",
            "severity": "info",
            "detail": [
              "<string>"
            ]
          }
        ],
        "schemeType": "<string>"
      }
    }
  ]
}

Path Parameters

integration_id
string
required

Query Parameters

first
integer
default:20
after
string
before
string

Response

200
application/json
OK

HubConnectionTemplatePage is a paginated list of Hub Connection Templates.

totalCount
integer
required
connectionTemplates
object[]
required

A Hub Connection Template is a lightweight wrapper around a Connector from Connect API, but includes additional information to make embedding the integration simpler.

Versori-users do not need to establish connections in an integration. These are connected to by end-users when they activate the integration from the embedded integration hub.

next
string
prev
string