공유 드라이브 권한 수정
PATCH /sharedrives/{sharedriveId}/permissions/{permissionId}
공유 드라이브의 권한을 수정한다.
Authorization
oauth2
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증을 참고한다.
Scope
file
Request
HTTP Request
PATCH
https://www.worksapis.com/v1.0/sharedrives/{sharedriveId}/permissions/{permissionId}
Path Parameters
Parameter | Type | Description |
---|---|---|
sharedriveId | string | 공유 드라이브 ID required example : @2101000000000008 |
permissionId | string | 권한 ID required example : QDIxMDAwMDAwMDAwMTcwfEdST1VQfDEwMTAwMDAwMDExNDY1MA |
Header Parameters
Header | type | Description |
---|---|---|
Authorization | string | Bearer {token} required |
Request Body
Property | Type | Description |
---|---|---|
type | string | 편집 권한
Allowed values : READ, WRITE |
Response
HTTP 200
OK
Property | Type | Description |
---|---|---|
permissionId | string | 권한 ID required minLength : 1 readOnly : true |
type | string | 편집 권한
required Allowed values : READ, WRITE |
userId | string | 사용자 ID required minLength : 1 readOnly : true |
userType | string | 사용자 유형
required Allowed values : USER, ORGUNIT, GROUP |
userName | string | 사용자 이름 required minLength : 1 readOnly : true |
Response Example
example
1{
2 "permissionId": "QDIxMDAwMDAwMDAwMTcwfEdST1VQfDEwMTAwMDAwMDExNDY1MA",
3 "type": "WRITE",
4 "userId": "group127-8545-4463-603b-04d550d23bf",
5 "userType": "GROUP",
6 "userName": "test name"
7}
HTTP 403
Forbidden