Skip to main content

Mutation - Teams 싱크 그룹 설정

Teams의 그룹에 대한 싱크 설정한다.


Schema

GraphQL Schema Documentation


Input Objects

KEYOBJECTDESC
teamsSyncInfoTeamsSyncInfoUpdateInputteams 그룹 싱크 업데이트 정보 (필수)
adminPageBoolean관리자 페이지 여부

Objects

OBJECTDESC
TeamsSyncInfoDtoteams 그룹 싱크 정보

Method

POST

{{url}}/graphql

Headers

KEYVALUE
AuthorizationSecurity365 JWT 토큰

Body

QUERY

mutation updateTeamsSyncGroupList($teamsSyncInfo: TeamsSyncInfoUpdateInput!, $adminPage: Boolean) {
updateTeamsSyncGroupList(teamsSyncInfo: $teamsSyncInfo, adminPage: $adminPage) {
syncOnlySelected
teamsGroups {
id
displayName
createdDateTime
security365Sync
security365CurrentUpdate
}
}
}

Sample

VARIABLES

{
"teamsSyncInfo": {
"sync_only_selected": true,
"selected_groups": ["4b28c107-d9aa-46a8-b902-6d43199ba08e"]
},
"adminPage": true
}

RESPONSE

{
"data": {
"teamsSyncGroupList": {
"syncOnlySelected": true,
"teamsGroups": [
{
"id": "fc31bfc0-1d3d-4801-b8bc-1b8cd516b35e",
"displayName": "purenew",
"createdDateTime": "2021-01-04T04:57:47Z",
"security365Sync": false,
"security365CurrentUpdate": false
},
{
"id": "facf07d2-6152-409d-a635-0660e8b1f4f0",
"displayName": "user3home",
"createdDateTime": "2021-01-05T07:59:14Z",
"security365Sync": false,
"security365CurrentUpdate": false
},
{
"id": "330a0127-9b96-4d96-a70c-dcd9c88214f0",
"displayName": "shieldrmtest01",
"createdDateTime": "2023-06-02T08:22:11Z",
"security365Sync": false,
"security365CurrentUpdate": false
}
]
}
}
}