-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrors.json
More file actions
100 lines (100 loc) · 2.67 KB
/
Copy patherrors.json
File metadata and controls
100 lines (100 loc) · 2.67 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"captured_utc": "2026-07-20T20:02:55Z",
"note": "Bodies are recorded verbatim where the whole body is publishable. Where only part of a body is documented, the status, error code and message are recorded instead.",
"errors": [
{
"status": 400,
"error": "invalid_params",
"billed": false,
"captured_body": {
"error": "invalid_params",
"issues": [
{
"code": "invalid_type",
"expected": "string",
"received": "undefined",
"path": [
"username"
],
"message": "Required"
}
]
},
"action": "Supply username."
},
{
"status": 400,
"error": "invalid_params",
"billed": false,
"captured_body": {
"error": "invalid_params",
"issues": [
{
"code": "too_big",
"maximum": 25,
"type": "number",
"inclusive": true,
"exact": false,
"message": "Number must be less than or equal to 25",
"path": [
"limit"
]
}
]
},
"action": "limit is 1 to 25."
},
{
"status": 400,
"error": "invalid_params",
"billed": false,
"captured_body": {
"error": "invalid_params",
"issues": [
{
"received": "banana",
"code": "invalid_enum_value",
"options": [
"overview",
"submitted",
"comments"
],
"path": [
"kind"
],
"message": "Invalid enum value. Expected 'overview' | 'submitted' | 'comments', received 'banana'"
}
]
},
"action": "kind is overview, submitted or comments."
},
{
"status": 401,
"error": "INVALID_API_KEY",
"billed": false,
"captured_body": {
"error": {
"code": "INVALID_API_KEY",
"message": "Api key not recognised."
}
},
"action": "Check api_key."
},
{
"status": 404,
"error": "item_not_found",
"message": "The target returned 404 for this request - the item or identifier does not exist. Check the id or URL. You were not charged.",
"retryable": false,
"billed": false,
"action": "Check the username. Retrying will not help."
},
{
"status": 502,
"error": "target_unreachable",
"message": "Target blocked every retry. Try again shortly - you were not charged.",
"retryable": true,
"billed": false,
"action": "Retry after ~8 seconds. If it repeats on one name, check the spelling."
}
]
}