-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrors.json
More file actions
34 lines (34 loc) · 982 Bytes
/
Copy patherrors.json
File metadata and controls
34 lines (34 loc) · 982 Bytes
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
{
"UNKNOWN_ROUTE": {
"code": 404,
"message": "Unknown route"
},
"UNPROCESSABLE_ENTITY": {
"code": 422,
"message": "Unprocessable entity"
},
"INTERNAL_ERROR": {
"code": 500,
"message": "Internal error"
},
"MISSING_KEY": {
"code": 400,
"message": "No authorization key provided. Ensure that you specify one within Authorization header or within URL if applicable"
},
"UNKNOWN_KEY": {
"code": 404,
"message": "Authorization key invalid or not found. Ensure to send a Bearer Token within Authorization header or within URL if applicable"
},
"FORBIDDEN": {
"code": 403,
"message": "You are not permitted to execute this action"
},
"QUOTA_EXCEEDED": {
"code": 429,
"message": "Your quota exceeded"
},
"INVALID_SCOPES": {
"code": 400,
"message": "Ensure to provide valid AKeys to define scope"
}
}