{
"userid": "USERID",
"spaceid": "SPACEID"
}
curl --location -g --request POST 'http://127.0.0.1/cgi-bin/wedrive/space_info?access_token={{accesstoken}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"userid": "USERID",
"spaceid": "SPACEID"
}'
{
"errcode": 0,
"errmsg": "ok",
"space_info": {
"spaceid": "SPACEID",
"space_name": "SPACE_NAME",
"auth_list": {
"auth_info": [
{
"type": 1,
"userid": "USERID1",
"auth": 3
},
{
"type": 1,
"userid": "USERID2",
"auth": 2
},
{
"type": 2,
"departmentid": "DEPARTMENTID1",
"auth": 1
}
],
"quit_userid": [
"USERID3",
"USERID4"
]
}
}
}