移除会场
DELETE
/meeting/api/v1/user/meetings/{meetingId}/venues/{venueId}
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Path 参数
meetingId
integer
会议id
venueId
string
会场id
Body 参数application/json
canRejoin
boolean | null
必需
默认值:
true
remove
boolean | null
必需
默认值:
true
示例
{
"canRejoin": true,
"remove": true
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request DELETE '/meeting/api/v1/user/meetings//venues/' \
--header 'Content-Type: application/json' \
--data-raw '{
"canRejoin": true,
"remove": true
}'
返回响应
🟢200成功
application/json
Body
object {0}
示例
{}