forked from SteamDatabase/SteamTracking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathISteamCommunity.json
60 lines (60 loc) · 1.98 KB
/
ISteamCommunity.json
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "ISteamCommunity",
"methods": [
{
"name": "ReportAbuse",
"version": 1,
"httpmethod": "POST",
"parameters": [
{
"name": "key",
"type": "string",
"optional": false,
"description": "access key"
},
{
"name": "steamidActor",
"type": "uint64",
"optional": false,
"description": "SteamID of user doing the reporting"
},
{
"name": "steamidTarget",
"type": "uint64",
"optional": false,
"description": "SteamID of the entity being accused of abuse"
},
{
"name": "appid",
"type": "uint32",
"optional": false,
"description": "AppID to check for ownership"
},
{
"name": "abuseType",
"type": "uint32",
"optional": false,
"description": "Abuse type code (see EAbuseReportType enum)"
},
{
"name": "contentType",
"type": "uint32",
"optional": false,
"description": "Content type code (see ECommunityContentType enum)"
},
{
"name": "description",
"type": "string",
"optional": false,
"description": "Narrative from user"
},
{
"name": "gid",
"type": "uint64",
"optional": true,
"description": "GID of related record (depends on content type)"
}
]
}
]
}