-
Notifications
You must be signed in to change notification settings - Fork 0
/
http-status-codes.json
1034 lines (1034 loc) · 21.6 KB
/
http-status-codes.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"200": {
"status": {
"type": "200 OK"
},
"stats": {
"is_error": false,
"rfc": null
},
"message": {
"code": 200,
"title": "OK",
"detail": "HTTP requests successful"
}
},
"201": {
"status": {
"type": "201 Created"
},
"stats": {
"is_error": false,
"rfc": null
},
"message": {
"code": 201,
"title": "Created",
"detail": "The request has been fulfilled, resulting in the creation of a new resource"
}
},
"202": {
"status": {
"type": "202 Accepted"
},
"stats": {
"is_error": false,
"rfc": null
},
"message": {
"code": 202,
"title": "Accepted",
"detail": "The request has been accepted for processing, but the processing has not been completed"
}
},
"203": {
"status": {
"type": "203 Non-Authoritative Information"
},
"stats": {
"is_error": false,
"rfc": null
},
"message": {
"code": 203,
"title": "Non-Authoritative Information",
"detail": "The server is a transforming proxy that received a 200 OK from its origin, but is returning a modified version of the origin's response"
}
},
"204": {
"status": {
"type": "204 No Content"
},
"stats": {
"is_error": false,
"rfc": null
},
"message": {
"code": 204,
"title": "No Content",
"detail": "The server successfully processed the request and is not returning any content"
}
},
"205": {
"status": {
"type": "205 Reset Content"
},
"stats": {
"is_error": false,
"rfc": null
},
"message": {
"code": 205,
"title": "Reset Content",
"detail": "The server successfully processed the request, but is not returning any content. This response requires that the requester reset the document view"
}
},
"206": {
"status": {
"type": "206 Partial Content"
},
"stats": {
"is_error": false,
"rfc": {
"code": 7233,
"url": "https://tools.ietf.org/html/rfc7233"
}
},
"message": {
"code": 206,
"title": "Partial Content",
"detail": "The server is delivering only part of the resource due to a range header sent by the client"
}
},
"207": {
"status": {
"type": "207 Multi-Status"
},
"stats": {
"is_error": false,
"rfc": {
"code": 4918,
"url": "https://tools.ietf.org/html/rfc4918"
}
},
"message": {
"code": 207,
"title": "Multi-Status",
"detail": "The message body that follows is an XML message and can contain a number of separate response codes, depending on how many sub-requests were made"
}
},
"208": {
"status": {
"type": "208 Already Reported"
},
"stats": {
"is_error": false,
"rfc": {
"code": 5842,
"url": "https://tools.ietf.org/html/rfc5842"
}
},
"message": {
"code": 208,
"title": "Already Reported",
"detail": "The members of a DAV binding have already been enumerated in a previous reply to this request, and are not being included again"
}
},
"226": {
"status": {
"type": "226 IM Used"
},
"stats": {
"is_error": false,
"rfc": {
"code": 3229,
"url": "https://tools.ietf.org/html/rfc3229"
}
},
"message": {
"code": 226,
"title": "IM Used",
"detail": "The server has fulfilled a request for the resource, and the response is a representation of the result of one or more instance-manipulations applied to the current instance"
}
},
"300": {
"status": {
"type": "300 Multiple Choices"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 300,
"title": "Multiple Choices",
"detail": "Indicates multiple options for the resource from which the client may choose"
}
},
"301": {
"status": {
"type": "301 Moved Permanently"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 301,
"title": "Moved Permanently",
"detail": "This and all future requests should be directed to the given URI"
}
},
"302": {
"status": {
"type": "302 Found"
},
"stats": {
"is_error": true,
"rfc": {
"code": 1945,
"url": "https://tools.ietf.org/html/rfc1945"
}
},
"message": {
"code": 302,
"title": "Moved Temporarily",
"detail": "Moved Temporarily"
}
},
"303": {
"status": {
"type": "303 See Other"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 303,
"title": "See Other",
"detail": "The response to the request can be found under another URI using a GET method"
}
},
"304": {
"status": {
"type": "304 Not Modified"
},
"stats": {
"is_error": true,
"rfc": {
"code": 7232,
"url": "https://tools.ietf.org/html/rfc7232"
}
},
"message": {
"code": 304,
"title": "Not Modified",
"detail": "The resource has not been modified since the version specified by the request headers If-Modified-Since or If-None-Match"
}
},
"305": {
"status": {
"type": "305 Use Proxy"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 305,
"title": "Use Proxy",
"detail": "The requested resource is available only through a proxy, the address for which is provided in the response"
}
},
"306": {
"status": {
"type": "306 Switch Proxy"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 306,
"title": "Switch Proxy",
"detail": "Subsequent requests should use the specified proxy"
}
},
"307": {
"status": {
"type": "307 Temporary Redirect"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 307,
"title": "Temporary Redirect",
"detail": "The request should be repeated with another URI; however, future requests should still use the original URI"
}
},
"308": {
"status": {
"type": "308 Permanent Redirect"
},
"stats": {
"is_error": true,
"rfc": {
"code": 7538,
"url": "https://tools.ietf.org/html/rfc7538"
}
},
"message": {
"code": 308,
"title": "Permanent Redirect",
"detail": "The request and all future requests should be repeated using another URI"
}
},
"400": {
"status": {
"type": "400 Bad Request"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 400,
"title": "Bad Request",
"detail": "The server cannot or will not process the request due to an apparent client error"
}
},
"401": {
"status": {
"type": "401 Unauthorized"
},
"stats": {
"is_error": true,
"rfc": {
"code": 7235,
"url": "https://tools.ietf.org/html/rfc7235"
}
},
"message": {
"code": 401,
"title": "Unauthorized",
"detail": "The response must include a WWW-Authenticate header field containing a challenge applicable to the requested resource"
}
},
"403": {
"status": {
"type": "403 Forbidden"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 403,
"title": "Forbidden",
"detail": "The request was a valid request, but the server is refusing to respond to it. The user might be logged in but does not have the necessary permissions for the resource"
}
},
"404": {
"status": {
"type": "404 Not Found"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 404,
"title": "Not Found",
"detail": "The requested resource could not be found but may be available in the future. Subsequent requests by the client are permissible."
}
},
"405": {
"status": {
"type": "405 Method Not Allowed"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 405,
"title": "Method Not Allowed",
"detail": "A request method is not supported for the requested resource"
}
},
"406": {
"status": {
"type": "406 Not Acceptable"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 406,
"title": "Not Acceptable",
"detail": "The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request"
}
},
"407": {
"status": {
"type": "407 Proxy Authentication Required"
},
"stats": {
"is_error": true,
"rfc": {
"code": 7235,
"url": "https://tools.ietf.org/html/rfc7235"
}
},
"message": {
"code": 407,
"title": "Proxy Authentication Required",
"detail": "The client must first authenticate itself with the proxy"
}
},
"408": {
"status": {
"type": "408 Request Timeout"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 408,
"title": "Request Timeout",
"detail": "The client did not produce a request within the time that the server was prepared to wait. The client MAY repeat the request without modifications at any later time"
}
},
"409": {
"status": {
"type": "409 Conflict"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 409,
"title": "Conflict",
"detail": "The request could not be processed because of conflict in the request, such as an edit conflict between multiple simultaneous updates"
}
},
"410": {
"status": {
"type": "410 Gone"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 410,
"title": "Gone",
"detail": "The resource requested is no longer available and will not be available again"
}
},
"411": {
"status": {
"type": "411 Length Required"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 411,
"title": "Length Required",
"detail": "The request did not specify the length of its content, which is required by the requested resource"
}
},
"412": {
"status": {
"type": "412 Precondition Failed"
},
"stats": {
"is_error": true,
"rfc": {
"code": 7232,
"url": "https://tools.ietf.org/html/rfc7232"
}
},
"message": {
"code": 412,
"title": "Precondition Failed",
"detail": "The server does not meet one of the preconditions that the requester put on the request"
}
},
"413": {
"status": {
"type": "413 Payload Too Large"
},
"stats": {
"is_error": true,
"rfc": {
"code": 7231,
"url": "https://tools.ietf.org/html/rfc7231"
}
},
"message": {
"code": 413,
"title": "Payload Too Large",
"detail": "Request Entity Too Large"
}
},
"414": {
"status": {
"type": "414 URI Too Long"
},
"stats": {
"is_error": true,
"rfc": {
"code": 7231,
"url": "https://tools.ietf.org/html/rfc7231"
}
},
"message": {
"code": 414,
"title": "URI Too Long",
"detail": "The URI provided was too long for the server to process"
}
},
"415": {
"status": {
"type": "415 Unsupported Media Type"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 415,
"title": "Unsupported Media Type",
"detail": "The request entity has a media type which the server or resource does not support"
}
},
"416": {
"status": {
"type": "416 Range Not Satisfiable"
},
"stats": {
"is_error": true,
"rfc": {
"code": 7233,
"url": "https://tools.ietf.org/html/rfc7233"
}
},
"message": {
"code": 416,
"title": "Range Not Satisfiable",
"detail": "The client has asked for a portion of the file, but the server cannot supply that portion"
}
},
"417": {
"status": {
"type": "417 Expectation Failed"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 417,
"title": "Expectation Failed",
"detail": "The server cannot meet the requirements of the Expect request-header field"
}
},
"418": {
"status": {
"type": "418 I'm a teapot"
},
"stats": {
"is_error": true,
"rfc": {
"code": 2324,
"url": "https://tools.ietf.org/html/rfc2324"
}
},
"message": {
"code": 418,
"title": "I'm a teapot",
"detail": "The RFC 2324 specifies this code should be returned by teapots requested to brew coffee"
}
},
"421": {
"status": {
"type": "421 Misdirected Request"
},
"stats": {
"is_error": true,
"rfc": {
"code": 7540,
"url": "https://tools.ietf.org/html/rfc7540"
}
},
"message": {
"code": 421,
"title": "Misdirected Request",
"detail": "The request was directed at a server that is not able to produce a response"
}
},
"422": {
"status": {
"type": "422 Unprocessable Entity"
},
"stats": {
"is_error": true,
"rfc": {
"code": 4918,
"url": "https://tools.ietf.org/html/rfc4918"
}
},
"message": {
"code": 422,
"title": "Unprocessable Entity",
"detail": "The request was well-formed but was unable to be followed due to semantic errors"
}
},
"423": {
"status": {
"type": "423 Locked"
},
"stats": {
"is_error": true,
"rfc": {
"code": 4918,
"url": "https://tools.ietf.org/html/rfc4918"
}
},
"message": {
"code": 423,
"title": "Locked",
"detail": "The resource that is being accessed is locked"
}
},
"424": {
"status": {
"type": "424 Failed Dependency"
},
"stats": {
"is_error": true,
"rfc": {
"code": 4918,
"url": "https://tools.ietf.org/html/rfc4918"
}
},
"message": {
"code": 424,
"title": "Failed Dependency",
"detail": "The request failed due to failure of a previous request"
}
},
"426": {
"status": {
"type": "426 Upgrade Required"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 426,
"title": "Upgrade Required",
"detail": "The client should switch to a different protocol such as TLS/1.0, given in the Upgrade header field"
}
},
"428": {
"status": {
"type": "428 Precondition Required"
},
"stats": {
"is_error": true,
"rfc": {
"code": 6585,
"url": "https://tools.ietf.org/html/rfc6585"
}
},
"message": {
"code": 428,
"title": "Precondition Required",
"detail": "The origin server requires the request to be conditional"
}
},
"429": {
"status": {
"type": "429 Too Many Requests"
},
"stats": {
"is_error": true,
"rfc": {
"code": 6585,
"url": "https://tools.ietf.org/html/rfc6585"
}
},
"message": {
"code": 429,
"title": "Too Many Requests",
"detail": "The user has sent too many requests in a given amount of time. Intended for use with rate-limiting schemes"
}
},
"431": {
"status": {
"type": "431 Request Header Fields Too Large"
},
"stats": {
"is_error": true,
"rfc": {
"code": 6585,
"url": "https://tools.ietf.org/html/rfc6585"
}
},
"message": {
"code": 431,
"title": "Request Header Fields Too Large",
"detail": "The server is unwilling to process the request because either an individual header field, or all the header fields collectively, are too large"
}
},
"440": {
"status": {
"type": "440 Login Time-out"
},
"message": {
"is_error": true,
"code": 440,
"title": "Login Time-out",
"rfc": null,
"detail": "The client's session has expired and must log in again"
}
},
"444": {
"status": {
"type": "444 No Response"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 444,
"title": "No Response",
"detail": "Used to indicate that the server has returned no information to the client and closed the connection"
}
},
"449": {
"status": {
"type": "449 Retry With"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 449,
"title": "Retry With",
"detail": "The client's session has expired and must log in again"
}
},
"451": {
"status": {
"type": "451 Unavailable For Legal Reasons"
},
"stats": {
"is_error": true,
"rfc": {
"code": 7725,
"url": "https://tools.ietf.org/html/rfc7725"
}
},
"message": {
"code": 451,
"title": "Unavailable For Legal Reasons",
"detail": "The server cannot honour the request because the user has not provided the required information"
}
},
"495": {
"status": {
"type": "495 SSL Certificate Error"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 495,
"title": "SSL Certificate Error",
"detail": "An expansion of the 400 Bad Request response code, used when the client has provided an invalid client certificate"
}
},
"496": {
"status": {
"type": "496 SSL Certificate Required"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 496,
"title": "SSL Certificate Required",
"detail": "An expansion of the 400 Bad Request response code, used when a client certificate is required but not provided"
}
},
"497": {
"status": {
"type": "497 HTTP Request Sent to HTTPS Port"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 497,
"title": "HTTP Request Sent to HTTPS Port",
"detail": "An expansion of the 400 Bad Request response code, used when the client has made a HTTP request to a port listening for HTTPS requests"
}
},
"498": {
"status": {
"type": "498 Invalid Token"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 498,
"title": "Invalid Token",
"detail": "Returned by ArcGIS for Server. A code of 498 indicates an expired or otherwise invalid token"
}
},
"499": {
"status": {
"type": "499 Token Required"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 499,
"title": "Token Required",
"detail": "Returned by ArcGIS for Server. A code of 499 indicates that a token is required but was not submitted"
}
},
"500": {
"status": {
"type": "500 Internal Server Error"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 500,
"title": "Internal Server Error",
"detail": "A generic error message, given when an unexpected condition was encountered and no more specific message is suitable"
}
},
"501": {
"status": {
"type": "501 Not Implemented"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 501,
"title": "Not Implemented",
"detail": "The server either does not recognize the request method, or it lacks the ability to fulfill the request"
}
},
"502": {
"status": {
"type": "502 Bad Gateway"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 502,
"title": "Bad Gateway",
"detail": "The server was acting as a gateway or proxy and received an invalid response from the upstream server"
}
},
"503": {
"status": {
"type": "503 Service Unavailable"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 503,
"title": "Service Unavailable",
"detail": "The server is currently unavailable (because it is overloaded or down for maintenance). Generally, this is a temporary state"
}
},
"504": {
"status": {
"type": "504 Gateway Time-out"
},
"message": {
"is_error": true,
"code": 504,
"title": "Gateway Time-out",
"rfc": null,
"detail": "The server was acting as a gateway or proxy and did not receive a timely response from the upstream server"
}
},
"505": {
"status": {
"type": "505 HTTP Version Not Supported"
},
"stats": {
"is_error": true,
"rfc": null
},
"message": {
"code": 505,
"title": "HTTP Version Not Supported",
"detail": "The server does not support the HTTP protocol version used in the request."
}
},
"506": {
"status": {
"type": "506 Variant Also Negotiates"
},
"stats": {
"is_error": true,
"rfc": {
"code": 2295,
"url": "https://tools.ietf.org/html/rfc2295"
}
},
"message": {
"code": 506,
"title": "Variant Also Negotiates",
"detail": "Transparent content negotiation for the request results in a circular reference"
}
},
"507": {
"status": {
"type": "507 Insufficient Storage"
},
"stats": {
"is_error": true,
"rfc": {
"code": 4918,
"url": "https://tools.ietf.org/html/rfc4918"
}
},
"message": {
"code": 507,
"title": "Insufficient Storage",
"detail": "The server is unable to store the representation needed to complete the request"
}
},
"508": {
"status": {
"type": "508 Loop Detected"
},
"stats": {
"is_error": true,
"rfc": {
"code": 5842,
"url": "https://tools.ietf.org/html/rfc5842"
}
},
"message": {
"code": 508,
"title": "Loop Detected",
"detail": "The server detected an infinite loop while processing the request (sent in lieu of 208 Already Reported)"
}
},
"509": {
"status": {
"type": "509 Bandwidth Limit Exceeded"
},
"stats": {
"is_error": true,
"rfc": {
"code": 5842,
"url": "https://tools.ietf.org/html/rfc5842"
}
},
"message": {
"code": 509,
"title": "Bandwidth Limit Exceeded",
"detail": "The server has exceeded the bandwidth specified by the server administrator"
}
},
"510": {
"status": {
"type": "510 Not Extended"
},
"stats": {
"is_error": true,
"rfc": {
"code": 2774,
"url": "https://tools.ietf.org/html/rfc2774"
}
},
"message": {
"code": 510,
"title": "Not Extended",
"detail": "Further extensions to the request are required for the server to fulfill it"
}
},
"511": {
"status": {
"type": "511 Network Authentication Required"
},
"stats": {
"is_error": true,
"rfc": {
"code": 6585,
"url": "https://tools.ietf.org/html/rfc6585"
}
},
"message": {