curl --location -g --request POST 'https://qyapi.weixin.qq.com/cgi-bin/wedrive/file_move?access_token=' \
--header 'Content-Type: application/json' \
--data-raw '{
"fatherid": "FATHERID",
"replace": true,
"fileid": ["FILEID1", "FILEID2"]
}'
{
"errcode": 0,
"errmsg": "ok",
"file_list": {
"item": [
{
"fileid": "FILEID",
"file_name": "FILE_NAME",
"spaceid": "SPACEID",
"fatherid": "FATHERID",
"file_size": "FILE_SIZE",
"ctime": "CTIMEv",
"mtime": "MTIME",
"file_type": "FILE_TYPE",
"file_status": "FILE_STATUS",
"sha": "SHA",
"md5": "MD5"
}
]
}
}