integrations.insert

POST https://relay.bluejeans.com/api/integrations/
Create a new Integration entity of the specified type. You cannot create a new Integration that has allowed set to true because allowing an Integration requires an admin to manually consent to API access using an interactive browser flow, so all Integrations created with this method will always have their allowed property initially set to false, regardless of what you pass in the request body. To actually allow the Integration, you must call integrations.allow, which will also create the Integration automatically once admin consent is granted, making this method call unnecessary. Therefore, for the common use case of integrating Relay with Microsoft Office 365, you don't need to call this method at all, and can just call integrations.allow only.

inputs

application/json

entity

The Integration entity to add.
Integration BODY yes
{ "type": "OFFICE_365" }

outputs

The created entity.
application/json Integration