Connection UI

await integrationApp.integration('hubspot').openNewConnection()

Multiple Connections for the same Integration

If you want to let users create multiple connections for the same integration, set the allowMultipleConnections option of the createNewConnection method to true:

await integrationApp
  .integration('hubspot')
  .openNewConnection({
    allowMultipleConnections: true
  })

See Also