Skip to main content

Query - Teams 싱크 그룹 조회

Teams의 그룹 목록과 싱크 설정 상태를 조회한다.


Schema

GraphQL Schema Documentation


Input Objects

KEYOBJECTDESC
adminPageBoolean관리자 페이지 여부

Objects

OBJECTDESC
TeamsSyncInfoDtoteams 그룹 싱크 정보

Method

POST

{{url}}/graphql

Headers

KEYVALUE
AuthorizationSecurity365 JWT 토큰

Body

QUERY

query teamsSyncGroupList($adminPage: Boolean) {
teamsSyncGroupList(adminPage: $adminPage) {
syncOnlySelected
teamsGroups {
id
displayName
createdDateTime
security365Sync
security365CurrentUpdate
}
}
}

Sample

VARIABLES

{
"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
}
]
}
}
}