查询任务详情
GET
https://api.gezhe.com/v1/extracts/{id}
PPT 中获取到的宽度、高度、距离等数字,单位为 PPT 内置单位,一厘米等于 360,000。如需转换为厘米,可将接口获取的值除以 360,000
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Path 参数
id
string
任务 ID
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.gezhe.com/v1/extracts/'
返回响应
🟢200成功
application/json
Body
id
string
任务 ID
output
string
输出格式
name
string
必需
status
string
任务状态
target
object
必需
width
integer
PPT 页面宽度
height
integer
PPT 页面高度
slides
array [object {1}]
幻灯片内容
createdAt
string
任务创建时间
updatedAt
string
任务更新时间
errorCode
null
错误码
errorMsg
null
错误信息
示例
{
"id": "string",
"output": "string",
"name": "string",
"status": "string",
"target": {
"width": 0,
"height": 0,
"slides": [
{
"elements": [
{
"top": 0,
"left": 0,
"width": 0,
"height": 0,
"phType": "title",
"paragraphs": [
{
"text": "string",
"fontSize": 0
}
]
}
]
}
]
},
"createdAt": "string",
"updatedAt": "string",
"errorCode": null,
"errorMsg": null
}