- API Reference
- Introduction
- Overview Statistics
- Crash/Exception Analysis
- To set issue-level tags.POST
- Get device list based on stack keywordPOST
- Get crash user list within a specific time periodPOST
- Get crash statistics based on stack keywordPOST
- Get crash Stat based on device IDPOST
- Get crashHash list based on issue IDPOST
- Get OpenId base on device IDPOST
- Get notes based on issue IDGET
- Get issue detailsGET
- Get the most recent crash hash based on issue IDGET
- Get the list of crash hashes based on an issue IDPOST
- Get the trace data, trace logs, additional information, and custom key-value pairsGET
- Get crash detailsGET
- Get Issue listPOST
- Get Advanced Trends(Private test)POST
- Others
- Post upload symbolPOST
Get OpenId base on device ID
POST
{{env}}/uniform/openapi/getDeviceUserInfo/platformId/{{platformId}}/{{signature}}
Request
Header Params
Content-Type
string
required
Example:
application/json
Accept-Encoding
string
required
Example:
*
Body Params application/json
requestid
string
required
stime
string
required
etime
string
required
filters
object
required
deviceId
string
required
limit
integer
required
type
string
required
appId
string
required
Example
{
"requestid": "",
"stime": "",
"etime": "",
"filters": {
"deviceId": ""
},
"limit": 0,
"type": "",
"appId": ""
}
Responses
🟢200成功
application/json
Body
requestid
string
required
code
integer
required
errmsg
null
required
data
object
required
columns
array[string]
required
values
array [array]
required
results
null
required
cost
integer
required
Example
{
"requestid": "59c8117e9e470a7e86215f4e91b039e2",
"code": 200,
"errmsg": null,
"data": {
"columns": [
"time",
"userId"
],
"values": [
[
"2022-01-12 11:45:55",
"Unknown"
],
[
"2022-01-12 11:49:00",
"Unknown"
],
[
"2022-01-12 11:38:27",
"Unknown"
],
[
"2022-01-12 11:38:31",
"Unknown"
],
[
"2022-01-12 11:39:17",
"Unknown"
],
[
"2022-01-12 11:39:34",
"Unknown"
],
[
"2022-01-12 11:42:40",
"Unknown"
]
],
"results": null
},
"cost": 0
}
Modified at 2023-10-11 07:32:55