v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBTeams
Create team connections
Create multiple team connections.
post/api/v2/team/connections
Request body
Example request
{
"data": [
{
"attributes": {
"managed_by": "github_sync",
"source": "github"
},
"relationships": {
"connected_team": {
"data": {
"id": "@GitHubOrg/team-handle",
"type": "github_team"
}
},
"team": {
"data": {
"id": "87654321-4321-8765-dcba-210987654321",
"type": "team"
}
}
},
"type": "team_connection"
}
]
}Response
Created
Example response
{
"data": [
{
"attributes": {
"managed_by": "github_sync",
"source": "github"
},
"id": "12345678-1234-5678-9abc-123456789012",
"relationships": {
"connected_team": {
"data": {
"id": "@GitHubOrg/team-handle",
"type": "github_team"
}
},
"team": {
"data": {
"id": "87654321-4321-8765-dcba-210987654321",
"type": "team"
}
}
},
"type": "team_connection"
}
],
"meta": {
"page": {
"type": "number_size"
}
}
}