root.connectors object
The set of Office365 connectors for this app. The object is an array (maximum of one element) with all elements of type object
. Currently only one connector per app is supported.
Properties that reference this object type:
Syntax
Properties
connectorId
A unique identifier for the Connector that matches its ID in the Connectors Developer Dashboard.
Type
string
Required
✅
Constraints
Maximum string length: 64.
Supported values
configurationUrl
The https:// URL to use when configuring the connector using the inline configuration experience.
Type
string
Required
—
Constraints
Maximum string length: 2048.
Supported values
The string must start with https://
.
scopes
Specifies whether the connector offers an experience in the context of a channel in a team
, or an experience scoped to an individual user alone.
Type
Array of enum
Required
✅
Constraints
Maximum array items: 1.
Supported values
Allowed values: team
.
Examples
{
"connectors": [
{
"connectorId": "GUID-FROM-CONNECTOR-DEV-PORTAL%",
"configurationUrl": "https://contoso.com/teamsconnector/configure",
"scopes": [
"team"
]
}
]
}