Hubs
Create Integration
API Reference
Connect API
- Introduction
- Endpoints
Embedded API
- Introduction
- Endpoints
- Hubs
- End Users
- Connections
- Integrations
- Connectors
- Embed
- Activations
- Miscellaneous
Organisations API
- Overview
- Signing Keys
Hubs
Create Integration
Create Integration
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
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.
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>"
}