# 获取所有短音频接口

# 接口描述

用于查询所有短音频信息列表。

# 调用接口

请求接口:/TRACKSHORT/allShortCreatBySp.json
请求方法:POST

# 输入参数

参数名 参数类型 是否必传 说明
pageNo numeric 必传 页数,只能为 1
pageSize numeric 必传 每页数量;值范围[1,50]

# 返回结果

{
    "state": true,
    "errcode": "",
    "errmsg": "",
    "data": {
        "total": "230",
        "result": [
            {
                "trackId": "9154632",
                "TSID": "T10032435019",
                "resourceId": "479",
                "start_offset": "0",
                "duration": "30",
                "status": "0",
                "statusDesc": "未转码",
                "allRate": []
            },
            {
                "trackId": "9633884",
                "TSID": "T10033598029",
                "resourceId": "437",
                "start_offset": "10",
                "duration": "35",
                "status": "3",
                "statusDesc": "转码成功",
                "allRate": ["320"]
            }
        ]
    }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Last Updated: 12/25/2020, 2:41:19 PM