-
Notifications
You must be signed in to change notification settings - Fork 1
/
statuses.json
102 lines (102 loc) · 2.73 KB
/
statuses.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
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
101
102
[
{
"code": 1,
"desc": "A person verified by a 3rd party OAuth provider or by confirming their email address",
"text": "verified"
},
{
"code": 2,
"desc": "All items are uncategorized when they are first created. (Yes, US spelling)",
"text": "uncategorized"
},
{
"code": 3,
"desc": "An App, Item or Person can be active; this is the default state for an App",
"text": "active"
},
{
"code": 4,
"desc": "Items marked as done are complete",
"text": "done"
},
{
"code": 5,
"desc": "A flagged App, Item or Person requires admin attention",
"text": "flagged"
},
{
"code": 6,
"desc": "Soft-deleted items that no longer appear in UI but are kept for audit trail purposes",
"text": "deleted"
},
{
"code": 7,
"desc": "When an email or item is ready to be started/sent is still pending",
"text": "pending"
},
{
"code": 8,
"desc": "An email that has been sent but not yet opened",
"text": "sent"
},
{
"code": 9,
"desc": "When an email is opened by the recipient",
"text": "opened"
},
{
"code": 10,
"desc": "Temporary email bounce e.g. because inbox is full",
"text": "bounce_transient"
},
{
"code": 11,
"desc": "Permanent email bounce e.g. when inbox doesn't exist",
"text": "bounce_permanent"
},
{
"code": 200,
"desc": "successful HTTP request",
"text": "ok"
},
{
"code": 307,
"desc": "the request should be repeated with another URI",
"text": "temporary_redirect"
},
{
"code": 308,
"desc": "all future requests should be directed to the given URI",
"text": "permanent_redirect"
},
{
"code": 400,
"desc": "server cannot or will not process the request due to an apparent client error",
"text": "bad_request"
},
{
"code": 401,
"desc": "when authentication is required and has failed",
"text": "unauthorized"
},
{
"code": 403,
"desc": "request forbidden",
"text": "forbidden"
},
{
"code": 404,
"desc": "requested resource could not be found",
"text": "not_found"
},
{
"code": 429,
"desc": "has sent too many requests in a given amount of time",
"text": "too_many_requests"
},
{
"code": 500,
"desc": "an unexpected condition was encountered",
"text": "internal_server_error"
}
]