- 前台
- 用户接口
- 普通用户接口
- 站内信
- 视频组接口
- 视频接口
- 通用接口
- 搜索
- 标签
- 统计
- 反馈
- 举报
- 公告
- 后台
- 普通用户接口
- 站内信
- 视频组接口
- 视频接口
- 举报
- 反馈
- 危险接口
- 公告
添加视频
POST
/backstage/dangerous/video/add
危险接口
请求参数
Body 参数application/json
array of:
id
integer <int64>
可选
videoGroupId
integer <int64>
可选
index
integer <int32>
可选
title
string
可选
description
string
可选
cover
string
可选
uploadTime
string <date-time>
可选
status
string <byte>
可选
示例
[
{
"id": 0,
"videoGroupId": 0,
"index": 0,
"title": "string",
"description": "string",
"cover": "string",
"uploadTime": "2019-08-24T14:15:22Z",
"status": "string"
}
]
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/backstage/dangerous/video/add' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"id": 0,
"videoGroupId": 0,
"index": 0,
"title": "string",
"description": "string",
"cover": "string",
"uploadTime": "2019-08-24T14:15:22Z",
"status": "string"
}
]'
返回响应
🟢200OK
application/json
Body
array[integer <int64>]
可选
示例
[
0
]
修改于 2024-05-28 03:56:26