-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapi.html
1041 lines (1040 loc) · 43.6 KB
/
api.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="assets/style.css?t=90051322">
<link rel="stylesheet" href="styles/rsc.css?t=b3b3e441">
<link rel="stylesheet" href="styles/main.css?t=995a1369">
<script src="assets/script.js?t=93f1a66c"></script>
<title>Internal API - Strider</title>
<meta name="viewport" content="width=device-width">
</head>
<body class="-menu-visible">
<div class="doc-layout">
<div class="toggle menu-toggle js-menu-toggle"></div>
<div class="menu toc-menu">
<ul>
<li class="menu-item -level-0 -parent">
<ul class="submenu">
<li class="menu-item -level-1"><a class="link title link-index" href="index.html">Strider</a>
</li>
<li class="menu-item -level-1 -parent"><span class="title">Guides</span>
<ul class="submenu">
<li class="menu-item -level-2"><a class="link title link-guidesplatform-overview" href="guides/platform-overview.html">Overview</a>
</li>
<li class="menu-item -level-2"><a class="link title link-guideshow-to-install" href="guides/how-to-install.html">Installation</a>
</li>
<li class="menu-item -level-2"><a class="link title link-guidesconfiguration" href="guides/configuration.html">Configuration</a>
</li>
<li class="menu-item -level-2 -parent"><span class="title">Providers</span>
<ul class="submenu">
<li class="menu-item -level-3"><a class="link title link-guidesprovidersgithub" href="guides/providers/github.html">Github</a>
</li>
<li class="menu-item -level-3"><a class="link title link-guidesprovidersgitlab" href="guides/providers/gitlab.html">Gitlab</a>
</li>
<li class="menu-item -level-3"><a class="link title link-guidesprovidersbitbucket" href="guides/providers/bitbucket.html">Bitbucket</a>
</li>
<li class="menu-item -level-3"><a class="link title link-guidesprovidersmanual" href="guides/providers/manual.html">Manual</a>
</li>
</ul>
</li>
<li class="menu-item -level-2 -parent"><span class="title">Continuous Deployment</span>
<ul class="submenu">
<li class="menu-item -level-3"><a class="link title link-guidescontinuous-deploymentheroku" href="guides/continuous-deployment/heroku.html">Heroku</a>
</li>
<li class="menu-item -level-3"><a class="link title link-guidescontinuous-deploymentssh" href="guides/continuous-deployment/ssh.html">SSH</a>
</li>
</ul>
</li>
<li class="menu-item -level-2 -parent"><span class="title">Notifications</span>
<ul class="submenu">
<li class="menu-item -level-3"><a class="link title link-guidesnotificationsemail" href="guides/notifications/email.html">Email</a>
</li>
<li class="menu-item -level-3"><a class="link title link-guidesnotificationsslack" href="guides/notifications/slack.html">Slack</a>
</li>
<li class="menu-item -level-3"><a class="link title link-guidesnotificationshipchat" href="guides/notifications/hipchat.html">HipChat</a>
</li>
<li class="menu-item -level-3"><a class="link title link-guidesnotificationsgithub" href="guides/notifications/github.html">GitHub Status</a>
</li>
</ul>
</li>
<li class="menu-item -level-2"><a class="link title link-guideswebhooks" href="guides/webhooks.html">Webhooks</a>
</li>
<li class="menu-item -level-2"><a class="link title link-guidescreate-plugin" href="guides/create-plugin.html">Create your own plugin</a>
</li>
<li class="menu-item -level-2"><a class="link title -active link-api" href="api.html">Internal API</a>
<ul class="headings heading-list">
<li class="heading-item -depth-2"><a class="hlink link-change-email" href="#change-email">Change Email</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-request-body-parameters-parameters" href="#request-body-parameters-parameters">Request Body Parameters Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-change-password" href="#change-password">Change Password</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-request-body-parameters-parameters" href="#request-body-parameters-parameters">Request Body Parameters Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-delete-provider-account" href="#delete-provider-account">Delete Provider Account</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-parameter-parameters" href="#parameter-parameters">Parameter Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-update-provider-account" href="#update-provider-account">Update Provider Account</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-parameter-parameters" href="#parameter-parameters">Parameter Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-get-all-users" href="#get-all-users">Get All Users</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-examples" href="#examples">Examples</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-revoke-invite" href="#revoke-invite">Revoke Invite</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-request-body-parameters-parameters" href="#request-body-parameters-parameters">Request Body Parameters Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-send-invite" href="#send-invite">Send Invite</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-request-body-parameters-parameters" href="#request-body-parameters-parameters">Request Body Parameters Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-add-branch" href="#add-branch">Add Branch</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-request-body-parameters-parameters" href="#request-body-parameters-parameters">Request Body Parameters Parameters</a>
</li>
<li class="heading-item -depth-3"><a class="hlink link-request-url-parameters-parameters" href="#request-url-parameters-parameters">Request URL Parameters Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-delete-branch" href="#delete-branch">Delete Branch</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-request-body-parameters-parameters" href="#request-body-parameters-parameters">Request Body Parameters Parameters</a>
</li>
<li class="heading-item -depth-3"><a class="hlink link-request-url-parameters-parameters" href="#request-url-parameters-parameters">Request URL Parameters Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-reorder-branches" href="#reorder-branches">Reorder Branches</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-request-body-parameters-parameters" href="#request-body-parameters-parameters">Request Body Parameters Parameters</a>
</li>
<li class="heading-item -depth-3"><a class="hlink link-request-url-parameters-parameters" href="#request-url-parameters-parameters">Request URL Parameters Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-add-collaborator" href="#add-collaborator">Add Collaborator</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-request-body-parameters-parameters" href="#request-body-parameters-parameters">Request Body Parameters Parameters</a>
</li>
<li class="heading-item -depth-3"><a class="hlink link-request-url-parameters-parameters" href="#request-url-parameters-parameters">Request URL Parameters Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-delete-collaborator" href="#delete-collaborator">Delete Collaborator</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-request-body-parameters-parameters" href="#request-body-parameters-parameters">Request Body Parameters Parameters</a>
</li>
<li class="heading-item -depth-3"><a class="hlink link-request-url-parameters-parameters" href="#request-url-parameters-parameters">Request URL Parameters Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-get-collaborators" href="#get-collaborators">Get Collaborators</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-request-url-parameters-parameters" href="#request-url-parameters-parameters">Request URL Parameters Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-get-latest-jobs" href="#get-latest-jobs">Get Latest Jobs</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-examples" href="#examples">Examples</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-start-job" href="#start-job">Start Job</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-request-body-parameters-parameters" href="#request-body-parameters-parameters">Request Body Parameters Parameters</a>
</li>
<li class="heading-item -depth-3"><a class="hlink link-request-url-parameters-parameters" href="#request-url-parameters-parameters">Request URL Parameters Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-get-project-provider" href="#get-project-provider">Get Project Provider</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-request-url-parameters-parameters" href="#request-url-parameters-parameters">Request URL Parameters Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-update-project-provider" href="#update-project-provider">Update Project Provider</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-request-url-parameters-parameters" href="#request-url-parameters-parameters">Request URL Parameters Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-clear-cache" href="#clear-cache">Clear Cache</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-request-url-parameters-parameters" href="#request-url-parameters-parameters">Request URL Parameters Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-create-repo" href="#create-repo">Create Repo</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-request-body-parameters-parameters" href="#request-body-parameters-parameters">Request Body Parameters Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-delete-repo" href="#delete-repo">Delete Repo</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-request-url-parameters-parameters" href="#request-url-parameters-parameters">Request URL Parameters Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-create-new-session" href="#create-new-session">Create New Session</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-request-body-parameters-parameters" href="#request-body-parameters-parameters">Request Body Parameters Parameters</a>
</li>
</ul>
</li>
<li class="heading-item -depth-2"><a class="hlink link-get-session" href="#get-session">Get Session</a>
<ul class="heading-list -depth-2">
<li class="heading-item -depth-3"><a class="hlink link-examples" href="#examples">Examples</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="body page-api">
<div class="header-nav">
<div class="right"><a class="iconlink" href="https://github.com/Strider-CD/strider" data-title="Strider-CD/strider">
<!-- span.title Open in GitHub--><span class="icon -github"></span></a>
</div>
</div>
<div class="markdown-body"><p><a name="top"></a></p>
<h1 id="strider-v1.0.0">strider v1.0.0</h1>
<p>Strider API</p>
<ul>
<li>
<p><a href="#account">Account</a></p>
<ul>
<li><a href="#change-email">Change Email</a></li>
<li><a href="#change-password">Change Password</a></li>
<li><a href="#delete-provider-account">Delete Provider Account</a></li>
<li><a href="#update-provider-account">Update Provider Account</a></li>
</ul>
</li>
<li>
<p><a href="#admin">Admin</a></p>
<ul>
<li><a href="#get-all-users">Get All Users</a></li>
<li><a href="#revoke-invite">Revoke Invite</a></li>
<li><a href="#send-invite">Send Invite</a></li>
</ul>
</li>
<li>
<p><a href="#branch">Branch</a></p>
<ul>
<li><a href="#add-branch">Add Branch</a></li>
<li><a href="#delete-branch">Delete Branch</a></li>
<li><a href="#reorder-branches">Reorder Branches</a></li>
</ul>
</li>
<li>
<p><a href="#collaborators">Collaborators</a></p>
<ul>
<li><a href="#add-collaborator">Add Collaborator</a></li>
<li><a href="#delete-collaborator">Delete Collaborator</a></li>
<li><a href="#get-collaborators">Get Collaborators</a></li>
</ul>
</li>
<li>
<p><a href="#job">Job</a></p>
<ul>
<li><a href="#get-latest-jobs">Get Latest Jobs</a></li>
<li><a href="#start-job">Start Job</a></li>
</ul>
</li>
<li>
<p><a href="#provider">Provider</a></p>
<ul>
<li><a href="#get-project-provider">Get Project Provider</a></li>
<li><a href="#update-project-provider">Update Project Provider</a></li>
</ul>
</li>
<li>
<p><a href="#repo">Repo</a></p>
<ul>
<li><a href="#clear-cache">Clear Cache</a></li>
<li><a href="#create-repo">Create Repo</a></li>
<li><a href="#delete-repo">Delete Repo</a></li>
</ul>
</li>
<li>
<p><a href="#session">Session</a></p>
<ul>
<li><a href="#create-new-session">Create New Session</a></li>
<li><a href="#get-session">Get Session</a></li>
</ul>
</li>
</ul>
<h1 id="account">Account</h1>
<h2 id="change-email">Change Email</h2>
<p><a href="#top">Back to top</a></p>
<p>Changes the email address for the <em>active</em> user (the API user).</p>
<pre><code>POST /account/email
</code></pre>
<h3 id="request-body-parameters-parameters">Request Body Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">email</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The new email address. This must be a VALID email address.</p></td>
</tr>
</tbody>
</table>
<h2 id="change-password">Change Password</h2>
<p><a href="#top">Back to top</a></p>
<p>Changes the password for the <em>active</em> user (the API user).</p>
<pre><code>POST /account/password
</code></pre>
<h3 id="request-body-parameters-parameters">Request Body Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">password</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The new password, which must be at least 6 characters long.</p><em>Size range: 6..</em><br></td>
</tr>
</tbody>
</table>
<h2 id="delete-provider-account">Delete Provider Account</h2>
<p><a href="#top">Back to top</a></p>
<p>Deletes a provider account for the <em>active</em> user (the API user).</p>
<pre><code>DELETE /account/:provider/:id
</code></pre>
<h3 id="parameter-parameters">Parameter Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">provider</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>Type of provider, e.g. github</p></td>
</tr>
<tr>
<td style="text-align:left">id</td>
<td style="text-align:left">Number</td>
<td style="text-align:left"><p>Unique provider identification</p></td>
</tr>
</tbody>
</table>
<h2 id="update-provider-account">Update Provider Account</h2>
<p><a href="#top">Back to top</a></p>
<p>Updates a provider account for the <em>active</em> user (the API user).</p>
<pre><code>PUT /account/:provider/:id
</code></pre>
<h3 id="parameter-parameters">Parameter Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">provider</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>Type of provider, e.g. github</p></td>
</tr>
<tr>
<td style="text-align:left">id</td>
<td style="text-align:left">Number</td>
<td style="text-align:left"><p>Unique provider identification</p></td>
</tr>
</tbody>
</table>
<h1 id="admin">Admin</h1>
<h2 id="get-all-users">Get All Users</h2>
<p><a href="#top">Back to top</a></p>
<p>Retrieves a list of all Strider users.</p>
<pre><code>GET /admin/users
</code></pre>
<h3 id="examples">Examples</h3>
<p>CURL Example:</p>
<pre><code>curl -X GET http://localhost/admin/users
</code></pre>
<h2 id="revoke-invite">Revoke Invite</h2>
<p><a href="#top">Back to top</a></p>
<p>Revokes a previously sent Strider invitation.</p>
<pre><code>POST /admin/invite/revoke
</code></pre>
<h3 id="request-body-parameters-parameters">Request Body Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">invite_code</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The invite code/token of the invite being revoked.</p></td>
</tr>
</tbody>
</table>
<h3 id="examples">Examples</h3>
<p>CURL Example:</p>
<pre><code>curl -X POST -d invite_code=xoxox http://localhost/invite/revoke
</code></pre>
<h2 id="send-invite">Send Invite</h2>
<p><a href="#top">Back to top</a></p>
<p>Create & email a new Strider invite.</p>
<pre><code>POST /admin/invite/new
</code></pre>
<h3 id="request-body-parameters-parameters">Request Body Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">invite_code</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The invite code/token to use in the invitation</p></td>
</tr>
<tr>
<td style="text-align:left">email</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The email address of the new user being invited</p></td>
</tr>
</tbody>
</table>
<h3 id="examples">Examples</h3>
<p>CURL Example:</p>
<pre><code>curl -X POST -d invite_code=xoxox -d [email protected] http://localhost/invite/new
</code></pre>
<h1 id="branch">Branch</h1>
<h2 id="add-branch">Add Branch</h2>
<p><a href="#top">Back to top</a></p>
<p>Add a new branch for a project.</p>
<pre><code>POST /:org/:repo/branches
</code></pre>
<h3 id="request-body-parameters-parameters">Request Body Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">name</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The name of the new branch</p></td>
</tr>
<tr>
<td style="text-align:left">cloneName</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The name of the cloned branch</p></td>
</tr>
</tbody>
</table>
<h3 id="request-url-parameters-parameters">Request URL Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">org</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The organization name for the project. This is usually a GitHub user or organization name (e.g. "strider" in "strider-cd/strider") but may vary from one project provider to another. (as another example, in GitLab this refers to the repository's "group").</p></td>
</tr>
<tr>
<td style="text-align:left">repo</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The project's repository name.</p></td>
</tr>
</tbody>
</table>
<h3 id="examples">Examples</h3>
<p>CURL Example:</p>
<pre><code>curl -X POST -d name=newbranch http://localhost/api/strider-cd/strider/branches
</code></pre>
<h2 id="delete-branch">Delete Branch</h2>
<p><a href="#top">Back to top</a></p>
<p>Deletes a branch from a project</p>
<pre><code>DELETE /:org/:repo/branches
</code></pre>
<h3 id="request-body-parameters-parameters">Request Body Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">name</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The name of the branch to delete</p></td>
</tr>
</tbody>
</table>
<h3 id="request-url-parameters-parameters">Request URL Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">org</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The organization name for the project. This is usually a GitHub user or organization name (e.g. "strider" in "strider-cd/strider") but may vary from one project provider to another. (as another example, in GitLab this refers to the repository's "group").</p></td>
</tr>
<tr>
<td style="text-align:left">repo</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The project's repository name.</p></td>
</tr>
</tbody>
</table>
<h3 id="examples">Examples</h3>
<p>CURL Example:</p>
<pre><code>curl -X DELETE -d name=mybranch http://localhost/api/strider-cd/strider/branches
</code></pre>
<h2 id="reorder-branches">Reorder Branches</h2>
<p><a href="#top">Back to top</a></p>
<p>Updates the branch order for a project.</p>
<pre><code>PUT /:org/:repo/branches
</code></pre>
<h3 id="request-body-parameters-parameters">Request Body Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">branches</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The new branch order, comma delimited</p></td>
</tr>
</tbody>
</table>
<h3 id="request-url-parameters-parameters">Request URL Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">org</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The organization name for the project. This is usually a GitHub user or organization name (e.g. "strider" in "strider-cd/strider") but may vary from one project provider to another. (as another example, in GitLab this refers to the repository's "group").</p></td>
</tr>
<tr>
<td style="text-align:left">repo</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The project's repository name.</p></td>
</tr>
</tbody>
</table>
<h3 id="examples">Examples</h3>
<p>CURL Example:</p>
<pre><code>curl -X PUT -d branches=master,testing http://localhost/api/strider-cd/strider/branches
</code></pre>
<h1 id="collaborators">Collaborators</h1>
<h2 id="add-collaborator">Add Collaborator</h2>
<p><a href="#top">Back to top</a></p>
<p>Add a new collaborator to a repository/project.</p>
<pre><code>POST /:org/:repo/collaborators
</code></pre>
<h3 id="request-body-parameters-parameters">Request Body Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">email</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>Email address to add. If the user is not registered with Strider, we will send them an invite. If they are already registered, they will receive a notification of access.</p></td>
</tr>
<tr>
<td style="text-align:left">access</td>
<td style="text-align:left">Number</td>
<td style="text-align:left"><p>Access level to grant to the new collaborator. This can be <code>0</code>, for read only access, or <code>2</code> for admin access.</p><em>Default value: 0</em><br></td>
</tr>
</tbody>
</table>
<h3 id="request-url-parameters-parameters">Request URL Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">org</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The organization name for the project. This is usually a GitHub user or organization name (e.g. "strider" in "strider-cd/strider") but may vary from one project provider to another. (as another example, in GitLab this refers to the repository's "group").</p></td>
</tr>
<tr>
<td style="text-align:left">repo</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The project's repository name.</p></td>
</tr>
</tbody>
</table>
<h3 id="examples">Examples</h3>
<p>CURL Example:</p>
<pre><code>curl -X GET -d '{"email":"[email protected]", "access":2}' http://localhost/api/strider-cd/strider/collaborators
</code></pre>
<h2 id="delete-collaborator">Delete Collaborator</h2>
<p><a href="#top">Back to top</a></p>
<p>Remove a collaborator from a repository/project.</p>
<pre><code>DELETE /:org/:repo/collaborators
</code></pre>
<h3 id="request-body-parameters-parameters">Request Body Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">email</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>Email address to remove from the repo/project.</p></td>
</tr>
</tbody>
</table>
<h3 id="request-url-parameters-parameters">Request URL Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">org</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The organization name for the project. This is usually a GitHub user or organization name (e.g. "strider" in "strider-cd/strider") but may vary from one project provider to another. (as another example, in GitLab this refers to the repository's "group").</p></td>
</tr>
<tr>
<td style="text-align:left">repo</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The project's repository name.</p></td>
</tr>
</tbody>
</table>
<h3 id="examples">Examples</h3>
<p>CURL Example:</p>
<pre><code>curl -X DELETE -d '{"email":"[email protected]"}' http://localhost/api/strider-cd/strider/collaborators
</code></pre>
<h2 id="get-collaborators">Get Collaborators</h2>
<p><a href="#top">Back to top</a></p>
<p>Gets a list of collaborators for a project</p>
<pre><code>GET /:org/:repo/collaborators
</code></pre>
<h3 id="request-url-parameters-parameters">Request URL Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">org</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The organization name for the project. This is usually a GitHub user or organization name (e.g. "strider" in "strider-cd/strider") but may vary from one project provider to another. (as another example, in GitLab this refers to the repository's "group").</p></td>
</tr>
<tr>
<td style="text-align:left">repo</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The project's repository name.</p></td>
</tr>
</tbody>
</table>
<h3 id="examples">Examples</h3>
<p>CURL Example:</p>
<pre><code>curl -X GET http://localhost/api/strider-cd/strider/collaborators
</code></pre>
<h1 id="job">Job</h1>
<h2 id="get-latest-jobs">Get Latest Jobs</h2>
<p><a href="#top">Back to top</a></p>
<p>Return JSON object containing the most recent build status for each configured repo This function is used to build the main dashboard status page. The result is separated into <code>{public: [], yours: []}</code>.</p> <p>Note: the private ones are just ones that the current user is a collaborator on and are not necessarily private</p>
<pre><code>GET /api/jobs
</code></pre>
<h3 id="examples">Examples</h3>
<p>CURL Example:</p>
<pre><code>curl -X GET http://localhost/api/jobs
</code></pre>
<h2 id="start-job">Start Job</h2>
<p><a href="#top">Back to top</a></p>
<p>Executes a strider test and, optionally, deployment.</p>
<pre><code>POST /:org/:repo/start
</code></pre>
<h3 id="request-body-parameters-parameters">Request Body Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">type</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>Denotes the type of job to run. This can be "TEST_ONLY", which indicates that only the test stages of the job should be executed or "TEST_AND_DEPLOY", which indicates that all stages should be executed.</p><em>Default value: TEST_ONLY</em><br></td>
</tr>
<tr>
<td style="text-align:left">branch</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>Indicates which branch configuration should be executed.</p><em>Default value: master</em><br></td>
</tr>
<tr>
<td style="text-align:left">message</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>An optional message to include as the title of the execution.</p><em>Default value: Manually Retesting/Redeploying</em><br></td>
</tr>
</tbody>
</table>
<h3 id="request-url-parameters-parameters">Request URL Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">org</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The organization name for the project. This is usually a GitHub user or organization name (e.g. "strider" in "strider-cd/strider") but may vary from one project provider to another. (as another example, in GitLab this refers to the repository's "group").</p></td>
</tr>
<tr>
<td style="text-align:left">repo</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The project's repository name.</p></td>
</tr>
</tbody>
</table>
<h3 id="examples">Examples</h3>
<p>CURL Example:</p>
<pre><code>curl -X POST http://localhost/api/strider-cd/strider/start
</code></pre>
<h1 id="provider">Provider</h1>
<h2 id="get-project-provider">Get Project Provider</h2>
<p><a href="#top">Back to top</a></p>
<p>Get the provider config for the specified project</p>
<pre><code>GET /:org/:repo/provider
</code></pre>
<h3 id="request-url-parameters-parameters">Request URL Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">org</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The organization name for the project. This is usually a GitHub user or organization name (e.g. "strider" in "strider-cd/strider") but may vary from one project provider to another. (as another example, in GitLab this refers to the repository's "group").</p></td>
</tr>
<tr>
<td style="text-align:left">repo</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The project's repository name.</p></td>
</tr>
</tbody>
</table>
<h3 id="examples">Examples</h3>
<p>CURL Example:</p>
<pre><code>curl -X GET http://localhost:3000/strider-cd/strider/provider
</code></pre>
<h2 id="update-project-provider">Update Project Provider</h2>
<p><a href="#top">Back to top</a></p>
<p>Update a project's provider</p>
<pre><code>POST /:org/:repo/provider
</code></pre>
<h3 id="request-url-parameters-parameters">Request URL Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">org</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The organization name for the project. This is usually a GitHub user or organization name (e.g. "strider" in "strider-cd/strider") but may vary from one project provider to another. (as another example, in GitLab this refers to the repository's "group").</p></td>
</tr>
<tr>
<td style="text-align:left">repo</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The project's repository name.</p></td>
</tr>
</tbody>
</table>
<h3 id="examples">Examples</h3>
<p>CURL Example:</p>
<pre><code>curl -X POST http://localhost:3000/strider-cd/strider/provider
</code></pre>
<h1 id="repo">Repo</h1>
<h2 id="clear-cache">Clear Cache</h2>
<p><a href="#top">Back to top</a></p>
<p>Clears/invalidates the cache for a project.</p>
<pre><code>DELETE /:org/:repo/cache
</code></pre>
<h3 id="request-url-parameters-parameters">Request URL Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">org</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The organization name for the project. This is usually a GitHub user or organization name (e.g. "strider" in "strider-cd/strider") but may vary from one project provider to another. (as another example, in GitLab this refers to the repository's "group").</p></td>
</tr>
<tr>
<td style="text-align:left">repo</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The project's repository name.</p></td>
</tr>
</tbody>
</table>
<h3 id="examples">Examples</h3>
<p>CURL Example:</p>
<pre><code>curl -X DELETE http://localhost/api/strider-cd/strider/cache
</code></pre>
<h2 id="create-repo">Create Repo</h2>
<p><a href="#top">Back to top</a></p>
<p>Create a new project for a repo.</p>
<pre><code>PUT /:org
</code></pre>
<h3 id="request-body-parameters-parameters">Request Body Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">name</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The name of the new branch</p></td>
</tr>
<tr>
<td style="text-align:left">display_name</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>Human-readable project name</p></td>
</tr>
<tr>
<td style="text-align:left">display_url</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The URL for the repo (e.g. Github homepage)</p></td>
</tr>
<tr>
<td style="text-align:left">public</td>
<td style="text-align:left">Boolean</td>
<td style="text-align:left"><p>Whether this project is public or not.</p><em>Default value: false</em><br></td>
</tr>
<tr>
<td style="text-align:left">prefetch_config</td>
<td style="text-align:left">Boolean</td>
<td style="text-align:left"><p>Whether the strider.json should be fetched in advance.</p><em>Default value: true</em><br></td>
</tr>
<tr>
<td style="text-align:left">account</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The ID of provider account</p></td>
</tr>
<tr>
<td style="text-align:left">repo_id</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The ID of the repo</p></td>
</tr>
<tr>
<td style="text-align:left">provider</td>
<td style="text-align:left">Object</td>
<td style="text-align:left"><p>A json object with 'id' and 'config' properties.</p></td>
</tr>
</tbody>
</table>
<h2 id="delete-repo">Delete Repo</h2>
<p><a href="#top">Back to top</a></p>
<p>Deletes a repository/project. Also archives all jobs (marks as archived in DB which makes them hidden).</p>
<pre><code>DELETE /:org/:repo
</code></pre>
<h3 id="request-url-parameters-parameters">Request URL Parameters Parameters</h3>
<table>
<thead>
<tr>
<th style="text-align:left">Name</th>
<th style="text-align:left">Type</th>
<th style="text-align:left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">org</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The organization name for the project. This is usually a GitHub user or organization name (e.g. "strider" in "strider-cd/strider") but may vary from one project provider to another. (as another example, in GitLab this refers to the repository's "group").</p></td>
</tr>
<tr>
<td style="text-align:left">repo</td>
<td style="text-align:left">String</td>
<td style="text-align:left"><p>The project's repository name.</p></td>
</tr>
</tbody>
</table>
<h3 id="examples">Examples</h3>
<p>CURL Example:</p>
<pre><code>curl -X DELETE http://localhost/api/strider-cd/strider
</code></pre>
<h1 id="session">Session</h1>
<h2 id="create-new-session">Create New Session</h2>
<p><a href="#top">Back to top</a></p>
<p>Creates a new user session after validating an email address and password pair.</p>
<pre><code>POST /api/session
</code></pre>
<h3 id="request-body-parameters-parameters">Request Body Parameters Parameters</h3>
<table>
<thead>